:root {
  --wine: #6e5748;
  --wine-dark: #6e5748;
  --wine-soft: #6e5748;
  --sand: #e8d8c3;
  --beige: #f4ede3;
  --beige-deep: #eadfce;
  --ivory: #fbf8f3;
  --white: #ffffff;
  --gold: #b68143;
  --ink: #282321;
  --muted: #756b64;
  --line: rgba(110, 87, 72, 0.14);
  --shadow: 0 24px 60px rgba(62, 42, 35, 0.1);
  --radius: 28px;
  --container: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--wine);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--wine);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(251, 248, 243, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(52, 34, 28, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  z-index: 3;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 54px;
  flex: 0 0 34px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  color: #514843;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

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

.menu-button span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--wine);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(182, 129, 67, 0.38);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 13px;
}

.button-primary {
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 12px 30px rgba(110, 87, 72, 0.2);
}

.button-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 16px 36px rgba(110, 87, 72, 0.27);
}

.button-outline {
  color: var(--wine);
  border-color: rgba(110, 87, 72, 0.35);
}

.button-outline:hover {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.button-light {
  color: var(--wine);
  background: var(--white);
}

.button-accent {
  width: 100%;
  color: var(--wine-dark);
  background: var(--sand);
}

.button-accent:hover {
  background: #f0e1cd;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 216, 195, 0.6), transparent 32%),
    linear-gradient(130deg, var(--ivory) 0%, #f8f1e8 100%);
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(182, 129, 67, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: -290px;
  right: -190px;
  width: 680px;
  height: 680px;
}

.hero-shape-two {
  top: -210px;
  right: -110px;
  width: 520px;
  height: 520px;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
  padding-bottom: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-light {
  color: #ddb77e;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(54px, 5.4vw, 78px);
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: #675d57;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 35px;
}

.text-link {
  color: var(--wine);
  border-bottom: 1px solid rgba(110, 87, 72, 0.32);
  font-size: 14px;
  font-weight: 700;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 33px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  color: var(--wine);
  border: 1px solid rgba(110, 87, 72, 0.25);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  align-self: stretch;
}

.visual-frame {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 530px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--wine);
  border-radius: 240px 240px 28px 28px;
  box-shadow: 0 30px 70px rgba(110, 87, 72, 0.2);
}

.visual-frame::before,
.visual-frame::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(244, 237, 227, 0.12);
  border-radius: 50%;
  content: "";
}

.visual-frame::before {
  top: -100px;
  left: -140px;
}

.visual-frame::after {
  right: -160px;
  bottom: -110px;
}

.visual-caption {
  position: absolute;
  top: 48px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 1px 9px rgba(35, 15, 17, 0.55);
}

.arch {
  position: relative;
  display: grid;
  width: 70%;
  aspect-ratio: 0.85;
  place-items: center;
  margin-top: -16px;
  overflow: hidden;
  background: linear-gradient(145deg, #ead8bf, #c9a87d);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 180px 180px 16px 16px;
}

.arch::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(110, 87, 72, 0.2);
  border-radius: inherit;
  content: "";
  z-index: 2;
}

.photo-arch {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  aspect-ratio: auto;
  margin: 0;
  border-radius: 225px 225px 20px 20px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
}

.photo-arch::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(110, 87, 72, 0.05), transparent 48%, rgba(110, 87, 72, 0.2));
  content: "";
  pointer-events: none;
}

.scales {
  width: 70%;
  height: auto;
  fill: none;
  stroke: rgba(110, 87, 72, 0.62);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.arch-monogram {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 38px;
  height: 64px;
  object-fit: contain;
  opacity: 0.35;
  filter: sepia(18%) saturate(682%) hue-rotate(341deg) brightness(83%) contrast(82%);
}

.visual-card {
  position: absolute;
  right: 22px;
  bottom: 23px;
  left: 22px;
  display: flex;
  z-index: 3;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.visual-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-card strong {
  max-width: 185px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  text-align: right;
}

.trust-bar {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 34px;
  padding-block: 27px;
  border-top: 1px solid var(--line);
}

.trust-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-bar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 17px;
}

.trust-bar i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(39px, 4.2vw, 57px);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
}

.practice-section {
  background: var(--beige);
}

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

.practice-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(82, 59, 49, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.practice-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.practice-card::after {
  position: absolute;
  right: -55px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(182, 129, 67, 0.13);
  border-radius: 50%;
  content: "";
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--wine);
  background: var(--beige);
  border-radius: 16px;
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.practice-card h3,
.situation-card h3,
.process-list h3 {
  color: var(--wine);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.practice-card h3 {
  margin: 29px 0 15px;
  font-size: 29px;
}

.practice-card p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.practice-card a {
  display: inline-flex;
  z-index: 1;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.practice-card a svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.practice-card a:hover svg {
  transform: translateX(4px);
}

.situations-section {
  color: var(--white);
  background: var(--wine);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.split-heading h2 {
  color: var(--white);
}

.split-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

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

.situation-card {
  min-height: 275px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.situation-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.situation-card .card-icon {
  width: 46px;
  height: 46px;
  color: #f1d6ae;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.situation-card .card-icon svg {
  width: 23px;
  height: 23px;
}

.situation-card h3 {
  margin: 25px 0 12px;
  color: var(--white);
  font-size: 22px;
}

.situation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.75;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
  padding: 29px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
}

.section-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
}

.about-section {
  overflow: hidden;
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(65px, 9vw, 125px);
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 565px;
  place-items: center;
  overflow: visible;
  background:
    linear-gradient(rgba(110, 87, 72, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 87, 72, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #e6d2b7, #c39c6f);
  background-size: 46px 46px, 46px 46px, auto;
  border-radius: 220px 220px 25px 25px;
}

.about-visual::before {
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(110, 87, 72, 0.2);
  border-radius: inherit;
  content: "";
  z-index: 2;
}

.about-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 39%;
  border-radius: inherit;
}

.about-seal {
  position: absolute;
  right: -44px;
  bottom: 52px;
  display: flex;
  width: 165px;
  height: 165px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--wine);
  border: 9px solid var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 3;
}

.about-seal svg {
  width: 25px;
  fill: none;
  stroke: var(--sand);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.about-seal span {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.25;
}

.lead-quote {
  margin: 26px 0 23px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}

.about-copy > p:not(.eyebrow, .lead-quote) {
  color: var(--muted);
  font-size: 15px;
}

.about-copy strong {
  color: var(--ink);
}

.about-signature {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.about-signature span {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 31px;
  font-style: italic;
}

.about-signature small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-section {
  background: var(--beige);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  padding: 18px 34px;
  border-right: 1px solid rgba(110, 87, 72, 0.16);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list > li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 9px;
  font-size: 23px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(60px, 9vw, 120px);
}

.faq-grid .section-heading > p:last-child {
  margin-inline: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 23px 0;
  color: var(--wine);
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(110, 87, 72, 0.22);
  border-radius: 50%;
}

.faq-question span:last-child::before,
.faq-question span:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-question span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span:last-child::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: -4px 38px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.contact-section {
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(182, 129, 67, 0.2), transparent 32%),
    var(--wine);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  align-items: center;
  gap: clamp(65px, 9vw, 120px);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 35px;
}

.contact-items a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.contact-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-items a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-items small {
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-items strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(35, 12, 15, 0.25);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
}

.field label {
  color: #4b413c;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(110, 87, 72, 0.12);
  border-radius: 11px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 51px;
  padding: 0 15px;
}

.field textarea {
  min-height: 112px;
  padding: 13px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a49a94;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(182, 129, 67, 0.7);
  box-shadow: 0 0 0 4px rgba(182, 129, 67, 0.1);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.consent input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--wine);
}

.form-note {
  margin: 11px 0 0;
  color: #958a84;
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 70px 0 25px;
  color: #d3c5bb;
  background: var(--wine-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 55px;
}

.brand-footer {
  align-self: start;
}

.brand-footer .brand-mark {
  width: 34px;
  height: 54px;
}

.brand-footer .brand-mark img {
  opacity: 1;
}

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

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-column > strong {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

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

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

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  background: #167c50;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(14, 80, 52, 0.3);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #116942;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short {
  transition-delay: 0.08s;
}

.reveal-delay {
  transition-delay: 0.16s;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(49px, 6.3vw, 65px);
  }

  .visual-frame {
    min-height: 500px;
  }

  .practice-card {
    min-height: 420px;
    padding: 30px;
  }

  .split-heading {
    gap: 45px;
  }

  .about-grid {
    gap: 75px;
  }

  .about-seal {
    right: -35px;
    width: 140px;
    height: 140px;
  }

  .faq-grid,
  .contact-grid {
    gap: 65px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-button {
    display: block;
    z-index: 2;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 110px 34px 40px;
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
  }

  .main-nav .button {
    margin-top: 24px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .visual-frame {
    inset-inline: 12%;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 13px;
  }

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

  .practice-card {
    min-height: 300px;
  }

  .situations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading > p {
    max-width: 600px;
  }

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

  .about-visual {
    width: min(82%, 560px);
    margin-inline: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-grid {
    min-height: 0;
    gap: 46px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 58px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .hero-notes {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 455px;
  }

  .visual-frame {
    inset-inline: 0;
    min-height: 455px;
    border-radius: 190px 190px 23px 23px;
  }

  .visual-caption {
    top: 34px;
  }

  .arch {
    width: 73%;
    margin-top: -8px;
  }

  .photo-arch {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 0;
  }

  .visual-card {
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 15px;
  }

  .visual-card span {
    display: none;
  }

  .visual-card strong {
    max-width: none;
    font-size: 16px;
    text-align: left;
  }

  .trust-bar > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
  }

  .trust-bar i {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading.centered {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(36px, 10vw, 45px);
  }

  .practice-card {
    min-height: 335px;
    padding: 27px;
    border-radius: 22px;
  }

  .practice-card h3 {
    font-size: 27px;
  }

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

  .situation-card {
    min-height: 0;
    padding: 26px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .about-grid {
    gap: 65px;
  }

  .about-visual {
    width: calc(100% - 25px);
    min-height: 430px;
    margin-left: 0;
  }

  .about-visual::before {
    inset: 30px;
  }

  .about-seal {
    right: -29px;
    bottom: 34px;
    width: 126px;
    height: 126px;
    border-width: 7px;
  }

  .about-seal svg {
    display: none;
  }

  .about-seal span {
    font-size: 13px;
    text-align: center;
  }

  .faq-grid {
    gap: 42px;
  }

  .faq-question {
    font-size: 18px;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-form {
    padding: 25px 20px;
    border-radius: 21px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 55px;
    height: 55px;
    min-height: 0;
    justify-content: center;
    padding: 0;
    border-width: 2px;
  }

  .floating-whatsapp span {
    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;
  }
}
