:root {
  --ink: #172522;
  --deep: #123c38;
  --deep-2: #0a2b28;
  --teal: #0ca89e;
  --teal-soft: #c9eee8;
  --paper: #f4f0ea;
  --paper-2: #ebe3da;
  --white: #fffdf9;
  --line: rgba(23, 37, 34, .18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--teal); color: white; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translate(-50%, -112%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 98px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  background: linear-gradient(90deg, rgba(244,240,234,.96) 0 52%, rgba(244,240,234,.76) 52% 100%);
  border-bottom: 1px solid rgba(23,37,34,.14);
  backdrop-filter: blur(12px);
  transition: transform .38s cubic-bezier(.22,.72,.2,1), opacity .25s ease;
}
.site-header.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: .75rem; width: max-content; letter-spacing: .12em; font-size: .82rem; }
.brand img { width: 48px; height: 48px; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1.2; }
.brand strong { font-size: .65rem; letter-spacing: .36em; font-weight: 500; }
.main-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.4rem); font-size: .86rem; font-weight: 600; }
.main-nav a { position: relative; padding: .6rem 0; }
.main-nav a::after { content: ""; position: absolute; bottom: .35rem; left: 0; width: 0; height: 1px; background: currentColor; transition: width .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.header-cta { justify-self: end; padding: .88rem 1.25rem; color: white; background: var(--deep); font-size: .82rem; font-weight: 700; transition: background .25s ease, transform .25s ease; }
.header-cta:hover { background: var(--teal); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: none; padding: .75rem; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s ease; }

.hero { height: 100svh; min-height: 700px; display: grid; grid-template-columns: 52% 48%; width: 100%; }
.hero-copy { height: 100%; min-height: 0; padding: 120px clamp(2rem, 5.5vw, 6.5rem) 38px; display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.eyebrow { margin: 0 0 1.4rem; display: flex; align-items: center; gap: .7rem; text-transform: uppercase; letter-spacing: .2em; font-size: .73rem; font-weight: 700; }
.eyebrow span { width: 36px; height: 1px; background: var(--teal); }
.hero h1, .section h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}
.hero h1 { max-width: 800px; font-size: clamp(3.45rem, 4.7vw, 5.65rem); }
h1 em, h2 em { color: var(--teal); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 1.35rem 0 0; font-size: 1rem; line-height: 1.65; color: #465450; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.55rem; }
.button { min-height: 52px; padding: .85rem 1.25rem; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; border: 1px solid var(--ink); font-size: .87rem; font-weight: 700; transition: .25s ease; }
.button-primary { border-color: var(--deep); background: var(--deep); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--ink); color: white; }
.hero-facts { margin: 1.7rem 0 0; padding-top: 1rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-facts div { min-width: 0; padding-right: .75rem; }
.hero-facts dt { font-family: var(--serif); font-size: 1.2rem; line-height: 1.2; }
.hero-facts dd { margin: .2rem 0 0; color: #65706d; font-size: .75rem; }

.hero-visual { position: relative; height: 100%; min-height: 0; overflow: hidden; background: var(--deep); }
.hero-visual > img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 42%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 23, 21, .27), transparent 38%, rgba(8, 23, 21, .45)); }
.vertical-note { position: absolute; right: 1rem; top: 135px; margin: 0; writing-mode: vertical-rl; color: rgba(255,255,255,.7); letter-spacing: .25em; font-size: .63rem; }
.hero-card { position: absolute; right: 2rem; bottom: 2rem; padding: .8rem 1rem; display: flex; align-items: center; gap: .8rem; min-width: 245px; background: rgba(255, 253, 249, .94); box-shadow: 0 20px 50px rgba(0,0,0,.16); backdrop-filter: blur(10px); }
.hero-card img { width: 52px; height: 52px; border-radius: 50%; }
.hero-card span { display: flex; flex-direction: column; font-size: .74rem; color: #55605e; }
.hero-card strong { margin-bottom: .15rem; color: var(--ink); font-family: var(--serif); font-size: 1rem; }

.marquee { overflow: hidden; background: var(--deep); color: white; border-bottom: 1px solid rgba(255,255,255,.12); }
.marquee div { width: 100%; padding: 1rem clamp(1.25rem, 4vw, 4rem); display: grid; grid-template-columns: repeat(9, auto); justify-content: space-between; align-items: center; gap: 1rem; }
.marquee span { font-family: var(--serif); font-size: .86rem; letter-spacing: .12em; white-space: nowrap; }
.marquee i { color: var(--teal); font-style: normal; }
.marquee [aria-hidden="true"] { display: none; }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem); }
.section-heading { max-width: var(--max); margin: 0 auto 3.5rem; display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; column-gap: 4rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section h2, .contact h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.section-heading > p:last-child { max-width: 440px; margin: 0; color: #5d6865; }

.service-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 520px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 1.4rem; background: var(--paper-2); color: white; }
.service-card-featured, .service-card-text, .service-card-dark { min-height: 520px; background: var(--deep); color: white; }
.service-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.3,1); }
.service-card:hover > img { transform: scale(1.045); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08) 35%, rgba(3,21,19,.74)); }
.service-number, .service-card > div:last-child { position: relative; z-index: 1; }
.service-number { align-self: flex-end; padding: .35rem .55rem; border: 1px solid currentColor; font-size: .68rem; }
.service-card h3 { margin: 0 0 .45rem; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; line-height: 1; }
.service-card-dark h3 { font-size: clamp(1.65rem, 2.1vw, 1.9rem); line-height: 1.08; }
.service-card p { margin: 0; max-width: 330px; font-size: .88rem; line-height: 1.55; opacity: .84; }

.transformation { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; background: var(--deep-2); color: white; }
.transformation-copy { max-width: 520px; justify-self: end; }
.eyebrow-light { color: rgba(255,255,255,.74); }
.transformation-copy > p:nth-of-type(2) { margin: 1.5rem 0 2rem; max-width: 450px; color: rgba(255,255,255,.68); }
.transformation-meta { padding-top: 1.25rem; display: flex; gap: 1rem; border-top: 1px solid rgba(255,255,255,.2); }
.transformation-meta > span { color: var(--teal); font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.transformation-meta p { margin: 0; color: rgba(255,255,255,.62); font-size: .83rem; }
.transformation-meta strong { color: white; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.comparison { position: relative; aspect-ratio: 4 / 5; max-height: 690px; overflow: hidden; background: #0e2926; touch-action: pan-y; }
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.comparison-before { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-before img { object-position: center; }
.comparison-line { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); transform: translateX(-50%); width: 1px; background: white; pointer-events: none; }
.comparison-line span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: white; color: var(--deep); box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.comparison input { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.comparison-label { position: absolute; z-index: 2; top: 1rem; padding: .45rem .7rem; background: rgba(12,32,29,.72); color: white; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.before-label { left: 1rem; }
.after-label { right: 1rem; }

.instagram { background: var(--white); }
.instagram-heading { max-width: var(--max); margin: 0 auto 3rem; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.instagram-handle { min-width: 285px; padding: 1rem; display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.instagram-handle > span:nth-child(2) { display: flex; flex-direction: column; color: #69736f; font-size: .75rem; }
.instagram-handle strong { color: var(--ink); font-size: .92rem; }
.instagram-handle b { margin-left: auto; }
.instagram-icon { font-size: 2rem; color: var(--teal); }
.instagram-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(210px, 25vw); gap: .7rem; }
.insta-post { position: relative; overflow: hidden; background: var(--paper-2); }
.insta-post.insta-wide { grid-column: span 2; }
.insta-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.insta-post > span { position: absolute; right: .8rem; top: .8rem; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.9); transform: translateY(-60px); transition: transform .35s ease; }
.insta-post:hover img { transform: scale(1.04); filter: brightness(.82); }
.insta-post:hover > span { transform: translateY(0); }

.reviews { max-width: 1440px; margin: auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); background: var(--paper); }
.reviews-summary { align-self: start; position: sticky; top: 3rem; }
.rating-line { display: flex; align-items: end; gap: .8rem; margin-bottom: 1rem; }
.rating-line strong { font-family: var(--serif); font-size: 5.5rem; line-height: .8; font-weight: 400; }
.rating-line span, .review-top span { color: #e4a928; letter-spacing: .08em; }
.reviews-summary > p:not(.eyebrow) { color: #66716e; }
.reviews-summary > a { display: inline-flex; gap: .8rem; margin-top: 1.5rem; padding-bottom: .3rem; border-bottom: 1px solid; font-size: .85rem; font-weight: 700; }
.review-list { border-top: 1px solid var(--line); }
.review-card { padding: clamp(2rem, 4vw, 3.5rem) 0; border-bottom: 1px solid var(--line); }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-top small { color: #727b78; font-weight: 600; }
.review-card blockquote { margin: 1.25rem 0 1.8rem; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.18; }
.review-card footer { display: flex; align-items: center; gap: .9rem; }
.review-card footer img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.review-card footer div { display: flex; flex-direction: column; }
.review-card footer strong { font-size: .88rem; }
.review-card footer span { color: #727b78; font-size: .76rem; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--white); }
.about-visual { position: relative; justify-self: end; width: min(100%, 590px); }
.about-visual > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-stamp { position: absolute; right: -2rem; bottom: 2rem; width: 144px; height: 144px; border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: .55rem; background: var(--teal); color: white; box-shadow: 0 15px 40px rgba(9,108,101,.25); }
.about-stamp strong { font-family: var(--serif); font-size: 3.2rem; font-weight: 400; line-height: .9; }
.about-stamp span { font-size: .66rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.about-copy { max-width: 590px; }
.about-copy h2 { margin-bottom: 1.8rem; }
.about-copy > p:not(.eyebrow) { color: #5c6864; }
.about-copy .about-lead { color: var(--ink) !important; font-family: var(--serif); font-size: 1.5rem; line-height: 1.35; }
.signature { width: 74px; height: 74px; margin-top: 2rem; border-radius: 50%; }

.contact { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem); display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem 6rem; align-items: center; background: var(--deep); color: white; }
.contact-copy { max-width: 660px; }
.contact-copy > p:nth-of-type(2) { color: rgba(255,255,255,.68); }
.button-light { margin-top: 1rem; background: white; border-color: white; color: var(--deep); }
.button-light:hover { background: var(--teal); border-color: var(--teal); color: white; transform: translateY(-2px); }
.contact-details { border-top: 1px solid rgba(255,255,255,.2); }
.contact-details > div { padding: 1.35rem 0; display: grid; grid-template-columns: 50px 1fr; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-details > div > span { color: var(--teal); font-family: var(--serif); font-size: 1.2rem; }
.contact-details p { margin: 0; color: rgba(255,255,255,.68); font-size: .86rem; }
.contact-details strong { display: block; margin-bottom: .25rem; color: white; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.contact-details a { color: white; }
.contact-map { position: relative; grid-column: 1 / -1; height: min(58vw, 520px); min-height: 390px; overflow: hidden; background: var(--deep-2); border: 1px solid rgba(255,255,255,.16); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.88) contrast(1.04); }
.contact-map > a { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; min-height: 78px; padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: rgba(7,29,27,.94); color: white; box-shadow: 0 16px 38px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.contact-map > a span { display: flex; flex-direction: column; color: rgba(255,255,255,.66); font-size: .78rem; }
.contact-map > a strong { color: white; font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.contact-map > a b { color: var(--teal); font-size: .72rem; letter-spacing: .1em; }

.site-footer { padding: 1.6rem clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center; gap: 2rem; background: #071d1b; color: white; }
.brand-footer img { width: 44px; height: 44px; }
.site-footer p { margin: 0 auto 0 0; color: rgba(255,255,255,.55); font-size: .78rem; }
.site-footer small { color: rgba(255,255,255,.45); }
.whatsapp-float { position: fixed; z-index: 30; right: 1.25rem; bottom: 1.25rem; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #1ecb6b; color: white; box-shadow: 0 14px 35px rgba(0,0,0,.22); transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; border-color: var(--line); }
  .main-nav { position: fixed; inset: 98px 0 auto; padding: 1.5rem; display: none; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-inline: clamp(1.5rem, 5vw, 3.5rem); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 1.5rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card-featured, .service-card-text, .service-card-dark { min-height: 460px; }
  .reviews { grid-template-columns: .85fr 1.15fr; }
}

@media (max-width: 760px) {
  .site-header { height: 78px; padding-inline: 1rem; }
  .main-nav { top: 78px; }
  .brand { font-size: .74rem; }
  .brand img { width: 42px; height: 42px; }
  .hero { height: auto; min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { height: auto; min-height: auto; padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.8rem); }
  .hero-lead { font-size: .98rem; }
  .hero-facts { gap: .6rem; }
  .hero-facts dt { font-size: 1rem; }
  .hero-facts dd { font-size: .67rem; line-height: 1.4; }
  .hero-visual { height: 76svh; min-height: 520px; }
  .vertical-note { top: 1rem; }
  .hero-card { right: 1rem; bottom: 1rem; }
  .section { padding: 5rem 1.25rem; }
  .section h2, .contact h2 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .marquee div { grid-template-columns: repeat(2, 1fr); justify-items: center; gap: .7rem 1rem; }
  .marquee i { display: none; }
  .marquee span { font-size: .75rem; }
  .marquee span:nth-of-type(5) { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-featured, .service-card-text, .service-card-dark { min-height: 460px; }
  .transformation { grid-template-columns: 1fr; gap: 2.5rem; }
  .comparison { width: 100%; max-height: none; }
  .instagram-heading { align-items: stretch; flex-direction: column; }
  .instagram-handle { min-width: 0; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 52vw; }
  .insta-post.insta-wide { grid-column: auto; }
  .insta-post:last-child { grid-column: span 2; }
  .reviews { padding-inline: 1.25rem; grid-template-columns: 1fr; }
  .reviews-summary { position: static; }
  .about { grid-template-columns: 1fr; }
  .about-stamp { right: .8rem; bottom: .8rem; }
  .contact { grid-template-columns: 1fr; gap: 3rem; padding-inline: 1.25rem; }
  .contact-map { min-height: 420px; }
  .contact-map > a { align-items: flex-start; flex-direction: column; gap: .65rem; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .site-footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
