:root {
  --ink: #2f2923;
  --ink-soft: #6d6258;
  --ivory: #fbf8f3;
  --sand: #f1e9df;
  --taupe: #b8a798;
  --gold: #9b7442;
  --gold-dark: #79572f;
  --line: rgba(74, 58, 43, 0.14);
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  display: block;
}

::selection {
  background: #d9c2a5;
  color: #2d251e;
}

.section-shell {
  width: min(1420px, calc(100% - 64px));
  margin-inline: auto;
}

.section-pad {
  padding-block: 132px;
}

.top-note {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 7px 20px;
  background: #342b24;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.top-note a {
  color: #ead8bf;
}

.top-note-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 10px max(32px, calc((100vw - 1420px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  width: 270px;
  max-width: 100%;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  color: #5a4e43;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.mobile-menu {
  display: none;
}

.hero {
  padding-top: 24px;
}

.hero-card {
  position: relative;
  min-height: clamp(620px, 72vw, 790px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 3px;
  background: #d8cec2;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(247, 241, 232, 0.98) 0%,
      rgba(247, 241, 232, 0.92) 26%,
      rgba(247, 241, 232, 0.16) 58%,
      rgba(247, 241, 232, 0) 74%
    ),
    linear-gradient(0deg, rgba(42, 34, 28, 0.08), transparent 40%);
}

.hero-content {
  width: min(620px, 48%);
  padding: clamp(84px, 9vw, 144px) 0 90px clamp(44px, 7vw, 108px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5.15vw, 78px);
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(90, 69, 48, 0.42);
  color: #66513e;
  font-size: 12px;
  font-weight: 700;
}

.text-link span,
.button span,
.map-link span {
  font-size: 17px;
}

.hero-signature {
  position: absolute;
  right: 42px;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(66, 53, 42, 0.42);
  color: white;
  backdrop-filter: blur(8px);
}

.hero-signature span {
  font-family: var(--serif);
  font-size: 20px;
}

.hero-signature small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-strip > div {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(22px, 3vw, 44px);
}

.trust-strip > div + div {
  border-left: 1px solid var(--line);
}

.trust-mark {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #cdbda9;
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.trust-strip p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.trust-strip p span {
  color: #81756b;
  font-size: 12px;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.about-copy h2,
.experience-intro h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.25vw, 66px);
  line-height: 1.04;
}

.section-heading > p,
.experience-intro > p,
.about-copy > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 24px 70px rgba(80, 59, 39, 0.08);
  transform: translateY(-3px);
}

.service-number {
  color: #b9a38b;
  font-family: var(--serif);
  font-size: 15px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.service-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: #74695f;
  font-size: 13px;
  line-height: 1.7;
}

.service-arrow {
  position: absolute;
  top: 28px;
  right: 29px;
  color: var(--gold);
  font-size: 18px;
  opacity: 0.6;
}

.treatment-note {
  margin: 22px 0 0;
  color: #8e8379;
  font-size: 11px;
  line-height: 1.6;
}

.about {
  overflow: hidden;
  background: #eee5db;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.about-photo-wrap {
  position: relative;
  padding-left: clamp(0px, 4vw, 60px);
}

.about-photo {
  position: relative;
  aspect-ratio: 0.75;
  overflow: hidden;
  background: #d8cec2;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-photo-wrap::before {
  position: absolute;
  z-index: 0;
  top: -42px;
  left: 12px;
  width: 44%;
  height: 42%;
  border-top: 1px solid rgba(155, 116, 66, 0.5);
  border-left: 1px solid rgba(155, 116, 66, 0.5);
  content: "";
}

.about-seal {
  position: absolute;
  right: -54px;
  bottom: 60px;
  width: 154px;
  height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  background: #faf7f1;
  box-shadow: 0 20px 60px rgba(74, 56, 39, 0.12);
}

.about-seal img {
  width: 64px;
  height: 58px;
}

.about-seal span {
  color: #866b4d;
  font-family: var(--serif);
  font-size: 11px;
}

.about-copy {
  max-width: 690px;
}

.about-copy .eyebrow {
  margin-bottom: 24px;
}

.about-copy h2 {
  margin-bottom: 38px;
}

.about-lead {
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: #51463c !important;
  font-family: var(--serif);
  font-size: 21px !important;
  line-height: 1.6 !important;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 590px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 38px 0 32px;
  padding: 26px 0;
  border-top: 1px solid rgba(82, 64, 48, 0.16);
  border-bottom: 1px solid rgba(82, 64, 48, 0.16);
}

.credentials div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.credentials span {
  color: #998570;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.credentials strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.text-link-dark {
  color: var(--ink);
}

.experience-intro {
  max-width: 820px;
  margin: 0 auto 76px;
  text-align: center;
}

.experience-intro .eyebrow {
  justify-content: center;
}

.experience-intro h2 {
  margin-bottom: 28px;
}

.experience-intro > p {
  max-width: 630px;
  margin-inline: auto;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr auto;
  gap: 22px;
}

.experience-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d9cec0;
}

.experience-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.experience-gallery figure:hover img {
  transform: scale(1.025);
}

.gallery-tall {
  grid-row: 1 / 3;
  min-height: 760px;
}

.gallery-tall img {
  object-position: center 42%;
}

.gallery-small {
  min-height: 410px;
}

.gallery-small img {
  object-position: center 35%;
}

.gallery-quote {
  min-height: 326px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 56px;
  background: #3e332b;
  color: white;
}

.quote-mark {
  height: 44px;
  color: #b9986d;
  font-family: var(--serif);
  font-size: 70px;
  line-height: 1;
}

.gallery-quote p {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.2;
}

.quote-signature {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey {
  background: #f1e8de;
}

.journey-heading {
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(90, 71, 54, 0.18);
}

.step {
  min-height: 285px;
  padding: 34px 46px 28px 0;
}

.step + .step {
  padding-left: 46px;
  border-left: 1px solid rgba(90, 71, 54, 0.18);
}

.step > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border: 1px solid #b99c7a;
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.step h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.step p {
  max-width: 330px;
  color: #756a60;
  font-size: 13px;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: #3c3129;
  color: white;
}

.contact-copy {
  padding: clamp(60px, 8vw, 110px);
}

.eyebrow-light {
  color: #d0ad7c;
}

.contact h2 {
  max-width: 710px;
  margin-bottom: 28px;
}

.contact-copy > p {
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.62);
}

.button-light {
  border-color: #ead9c5;
  background: #f5eee5;
  color: #3f3228;
}

.button-light:hover {
  border-color: #fff;
  background: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: clamp(56px, 6vw, 86px);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  font-style: normal;
}

.contact-info div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info span {
  color: #c9a675;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info strong,
.contact-info a {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.contact-info .map-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding-block: 54px 36px;
}

.footer-brand {
  width: 270px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: #695d53;
  font-size: 12px;
  font-weight: 600;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #988b7e;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  min-width: 112px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: #486b54;
  color: white;
  box-shadow: 0 12px 36px rgba(41, 61, 47, 0.26);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease;
}

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

.floating-whatsapp span:first-child {
  font-size: 16px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 230px 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    grid-column: 2;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--line);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 100%;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: 230px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: 0 20px 50px rgba(73, 56, 40, 0.12);
  }

  .mobile-menu nav a {
    padding: 13px 12px;
    font-size: 13px;
  }

  .hero-content {
    width: 56%;
  }

  .about-grid {
    gap: 80px;
  }

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

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 36px, 720px);
  }

  .section-pad {
    padding-block: 90px;
  }

  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .brand {
    width: 220px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: 100%;
    padding-top: 0;
  }

  .hero-card {
    min-height: 760px;
    border-radius: 0;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(247, 241, 232, 0.98) 0%,
        rgba(247, 241, 232, 0.88) 38%,
        rgba(247, 241, 232, 0.08) 72%
      ),
      linear-gradient(0deg, rgba(35, 27, 21, 0.33), transparent 42%);
  }

  .hero-content {
    width: 100%;
    padding: 74px 26px 0;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(47px, 10.5vw, 68px);
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-signature {
    right: 20px;
    bottom: 20px;
  }

  .trust-strip {
    width: 100%;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .trust-strip > div {
    min-height: 110px;
    padding-inline: 28px;
  }

  .trust-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

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

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

  .about-photo-wrap {
    width: min(88%, 540px);
    margin-inline: auto;
    padding-left: 0;
  }

  .about-seal {
    right: -35px;
  }

  .credentials {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-tall {
    min-height: 680px;
    grid-row: auto;
  }

  .gallery-small {
    min-height: 520px;
  }

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

  .step {
    min-height: 230px;
    padding: 32px 0;
  }

  .step + .step {
    padding-left: 0;
    border-top: 1px solid rgba(90, 71, 54, 0.18);
    border-left: 0;
  }

  .step > span {
    margin-bottom: 28px;
  }

  .contact {
    width: 100%;
  }

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

  .contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }
}

@media (max-width: 580px) {
  .top-note {
    min-height: 31px;
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .top-note span:first-child,
  .top-note-dot {
    display: none;
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 188px;
  }

  .hero-card {
    min-height: 720px;
  }

  .hero-content {
    padding: 58px 22px 0;
  }

  .hero-content .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-signature {
    right: 14px;
    bottom: 14px;
    padding: 13px 15px;
  }

  .hero-signature span {
    font-size: 16px;
  }

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

  .service-card {
    min-height: 240px;
  }

  .section-heading h2,
  .about-copy h2,
  .experience-intro h2,
  .contact h2 {
    font-size: 40px;
  }

  .about-photo-wrap {
    width: 92%;
  }

  .about-seal {
    right: -14px;
    bottom: 24px;
    width: 118px;
    height: 118px;
  }

  .about-seal img {
    width: 51px;
    height: 48px;
  }

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

  .gallery-tall {
    min-height: 520px;
  }

  .gallery-small {
    min-height: 440px;
  }

  .gallery-quote {
    min-height: 290px;
    padding: 34px;
  }

  .contact-copy,
  .contact-info {
    padding: 52px 26px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
