:root {
  --navy: #4b3023;
  --navy-2: #684735;
  --ink: #2c221d;
  --gold: #aa7438;
  --gold-soft: #dfc19c;
  --cream: #f3ece3;
  --paper: #fcfaf7;
  --muted: #74675f;
  --line: #e3d8ce;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(75, 48, 35, 0.13);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(170, 116, 56, 0.42);
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 14%, rgba(170, 116, 56, 0.08), transparent 25%),
    var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head h2,
.split-copy h2,
.page-hero h1 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(75, 48, 35, 0.1);
  background: rgba(252, 250, 247, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(75, 48, 35, 0.04);
}

.topbar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 0.78rem;
}

.topbar .container {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a:hover {
  color: var(--white);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(75, 48, 35, 0.14));
}

.brand-name {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a {
  position: relative;
  color: #51443d;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
}

.site-nav > .btn-primary {
  color: var(--white);
}

.site-nav > .btn-primary::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(75, 48, 35, 0);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(75, 48, 35, 0.2);
}

.btn-gold {
  color: #302118;
  background: linear-gradient(135deg, #e0ba77, #c99049);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e8c98f, #d39b55);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 144, 73, 0.24);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero::before {
  right: -130px;
  bottom: -260px;
  width: 600px;
  height: 600px;
}

.hero::after {
  right: 60px;
  bottom: -210px;
  width: 420px;
  height: 420px;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../../novas imagens/hero-fachada.jpeg") center 58% / cover no-repeat;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(48, 29, 20, 0.94) 0%, rgba(48, 29, 20, 0.78) 43%, rgba(48, 29, 20, 0.16) 78%),
    linear-gradient(0deg, rgba(48, 29, 20, 0.45), transparent 45%);
  content: "";
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  align-items: center;
}

.hero-copy {
  max-width: 670px;
  padding: 82px 0;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-assurance {
  display: flex;
  max-width: 485px;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-assurance strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.86rem;
}

.assurance-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(224, 186, 119, 0.5);
  border-radius: 50%;
  color: #e0ba77;
}

.quick-access {
  position: relative;
  padding: 30px 0;
  background: var(--cream);
}

.quick-grid {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(75, 48, 35, 0.08);
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  position: relative;
  display: flex;
  min-height: 136px;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: 0.25s ease;
}

.quick-item::after {
  position: absolute;
  right: 24px;
  color: var(--gold);
  content: "↗";
  font-size: 1.1rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: 0.25s ease;
}

.quick-item:hover::after {
  opacity: 1;
  transform: none;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item:hover {
  background: var(--cream);
}

.quick-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.quick-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.quick-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-item > span:last-child {
  display: block;
  min-width: 0;
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 315px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.3s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(135deg, transparent, rgba(170, 116, 56, 0.08));
  content: "";
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-label {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 16px;
  color: var(--gold);
  background: #f0e2d1;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.journey-section {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
}

.journey-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.journey-card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #fbf7f2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.journey-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.journey-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.journey-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-panel {
  display: grid;
  align-items: center;
  gap: 40px;
  margin-top: 26px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(75, 48, 35, 0.98), rgba(104, 71, 53, 0.92)),
    url("../../novas imagens/15.jpeg") center / cover;
  grid-template-columns: 0.9fr 1.1fr;
}

.trust-copy h3 {
  max-width: 430px;
  margin-bottom: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.trust-points {
  display: grid;
  gap: 12px;
}

.trust-points span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.trust-points b {
  color: #e0ba77;
  font-family: Georgia, serif;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.split {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: 1.05fr 0.95fr;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  height: 600px;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 16px 0 0;
  padding: 22px;
  border-radius: 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-note strong {
  display: block;
  color: #e4bd7a;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.split-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  font-weight: 700;
}

.check-list li::before {
  color: var(--gold);
  content: "✓";
}

.gallery-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-strip img {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  object-fit: cover;
}

.gallery-strip img:nth-child(2),
.gallery-strip img:nth-child(3) {
  height: 360px;
  margin-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background: var(--navy);
}

.cta-band::after {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  max-width: 650px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  background: var(--cream);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 1px solid rgba(170, 116, 56, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero::after {
  top: -190px;
  right: -100px;
  width: 430px;
  height: 430px;
}

.page-hero::before {
  right: 170px;
  bottom: -170px;
  width: 280px;
  height: 280px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: 1.1fr 0.9fr;
}

.page-hero p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-detail {
  display: grid;
  align-items: center;
  gap: 70px;
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.85fr 1.15fr;
}

.service-detail:nth-child(even) .detail-image {
  order: 2;
}

.detail-image img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  object-fit: cover;
}

.wedding-image {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.wedding-image img {
  height: 520px;
}

.wedding-image::after {
  display: none;
}

.detail-image {
  position: relative;
  isolation: isolate;
}

.detail-image::after {
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: -1;
  width: 80%;
  height: 80%;
  border-radius: var(--radius);
  background: var(--gold-soft);
  content: "";
}

.detail-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.detail-copy h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.detail-copy p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--cream);
  font-size: 0.76rem;
  font-weight: 800;
}

.values-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  padding: 30px;
  border-left: 2px solid var(--gold);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  box-shadow: 0 16px 36px rgba(75, 48, 35, 0.08);
  transform: translateY(-3px);
}

.value-card h3 {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.photo-grid img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(4) {
  margin-top: 36px;
}

.faq-wrap {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 12px 30px rgba(75, 48, 35, 0.07);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  margin: 0;
}

.contact-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.contact-card h2 {
  margin-bottom: 26px;
  font-size: 2.2rem;
  font-weight: 500;
}

.contact-item {
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item small {
  display: block;
  margin-bottom: 3px;
  color: #e4bd7a;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccd5da;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 137, 61, 0.12);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  background: #321f17;
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 54px;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 8px 0;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  padding: 0;
  border: 4px solid #eef1f3;
  border-radius: 50%;
  color: var(--white);
  background: #49b64f;
  box-shadow: 0 10px 30px rgba(75, 48, 35, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.whatsapp::before {
  position: absolute;
  right: 68px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  content: "Fale pelo WhatsApp";
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: 0.2s ease;
  white-space: nowrap;
}

.whatsapp:hover {
  background: #42aF49;
  box-shadow: 0 14px 34px rgba(73, 182, 79, 0.32);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp:hover::before {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .site-nav.open {
    transform: none;
  }

  .site-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .btn {
    margin-top: 20px;
    color: var(--white);
  }

  .quick-grid,
  .service-grid,
  .values-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .wedding-image {
    grid-template-columns: 1fr 1fr;
  }

  .wedding-image img {
    height: 420px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .split,
  .page-hero .container,
  .service-detail,
  .contact-grid {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .detail-image {
    order: 0;
  }

  .image-note {
    right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 18px;
  }

  .hero,
  .hero .container {
    min-height: 600px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(48, 29, 20, 0.94), rgba(48, 29, 20, 0.54));
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .quick-access {
    margin-top: 0;
    padding: 20px 0;
  }

  .split-image img,
  .detail-image img {
    height: 420px;
  }

  .wedding-image {
    grid-template-columns: 1fr;
  }

  .wedding-image img {
    height: 380px;
  }

  .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 14px 0 0;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip img {
    height: 240px;
  }

  .gallery-strip img:nth-child(2),
  .gallery-strip img:nth-child(3) {
    height: 240px;
    margin-top: 0;
  }

  .gallery-strip img:first-child {
    grid-column: 1 / -1;
  }

  .cta-inner,
  .footer-bottom {
    display: block;
  }

  .cta-inner .btn {
    margin-top: 24px;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid img {
    height: 250px;
  }

  .photo-grid img:nth-child(2),
  .photo-grid img:nth-child(4) {
    margin-top: 0;
  }

  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .trust-panel {
    padding: 28px;
  }

  .journey-card {
    min-height: auto;
  }

  .journey-number {
    margin-bottom: 28px;
  }

  .whatsapp::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
