:root {
  --ink: #10110f;
  --ink-soft: #1a1c18;
  --paper: #f3eee4;
  --paper-deep: #e9dfce;
  --white: #fffdf8;
  --gold: #c49a59;
  --gold-dark: #8d6a35;
  --green: #30483b;
  --green-light: #dce3da;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 17, 15, 0.16);
  --display: "Bodoni Moda", "Bodoni MT", Didot, serif;
  --body: "Manrope", Arial, sans-serif;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }

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

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

body.menu-open { overflow: hidden; }

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

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

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

button { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
}

.site-header.is-scrolled {
  position: fixed;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  animation: header-in 220ms ease-out;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-wrap {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.is-scrolled .nav-wrap { height: 72px; border-bottom: 0; }

.is-scrolled .brand {
  width: 58px;
  height: 58px;
  overflow: hidden;
}

.is-scrolled .brand img {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px;
  max-height: 54px;
  object-fit: contain;
}

.brand {
  width: 132px;
  height: 74px;
  display: grid;
  place-items: center;
}

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

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a,
.header-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { right: 0; }

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(196, 154, 89, 0.78);
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover { background: var(--gold); color: var(--ink); }

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 760px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: stretch;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2));
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
  padding: 160px clamp(36px, 6vw, 96px) 90px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.4vw, 102px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.4vw, 19px);
}

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

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button img { width: 18px; height: 18px; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: #d3ac6d; }

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  padding-bottom: 4px;
}

.text-link:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 760px;
  width: calc(100% + 170px);
  margin-left: -170px;
  overflow: hidden;
  background: #252823;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--ink) 0,
      rgba(16, 17, 15, 0.98) 30px,
      rgba(16, 17, 15, 0.82) 90px,
      rgba(16, 17, 15, 0.42) 150px,
      rgba(16, 17, 15, 0.12) 215px,
      transparent 285px),
    linear-gradient(0deg, rgba(16, 17, 15, 0.22), transparent 35%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 220px;
  min-height: 130px;
  padding: 24px 28px;
  background: var(--paper);
  color: var(--ink);
}

.hero-note span {
  display: block;
  font-family: var(--display);
  font-size: 33px;
  line-height: 1;
}

.hero-note p { margin: 10px 0 0; font-size: 12px; line-height: 1.5; }

.trust-bar {
  min-height: 122px;
  padding: 22px var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--paper-deep);
}

.trust-bar > div {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line-light);
}

.trust-bar > div:last-child { border-right: 0; }
.trust-bar strong { font-family: var(--display); font-size: 30px; line-height: 1.1; }
.trust-bar span { color: #615d54; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }

.section {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin: 0 auto;
  padding-top: clamp(84px, 10vw, 140px);
  padding-bottom: clamp(84px, 10vw, 140px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.portfolio-heading h2,
.values h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.intro h2 { font-size: clamp(43px, 5.2vw, 74px); }

.intro-copy { max-width: 520px; padding-top: 12px; }
.intro-copy p { margin: 0 0 20px; color: #5a574f; }

.services {
  border-top: 1px solid var(--line-light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.52fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.portfolio-heading h2,
.visit h2 { font-size: clamp(42px, 5vw, 66px); }

.section-heading > p {
  margin: 0 0 8px;
  color: #5b574f;
}

.service-list { border-top: 1px solid var(--ink); }

.service-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 50px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-item > span {
  padding-top: 6px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-item > div {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(300px, 1fr);
  gap: 54px;
  align-items: start;
}

.service-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}

.service-item p { max-width: 580px; margin: 5px 0 0; color: #625e55; }

.section-dark {
  background: var(--ink);
  color: var(--white);
  padding: clamp(84px, 10vw, 140px) max(var(--pad), calc((100vw - var(--max)) / 2));
}

.section-heading.light > p { color: rgba(255, 255, 255, 0.62); }

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.transform-card { border-top: 1px solid var(--line-dark); padding-top: 20px; }

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.comparison figure { position: relative; margin: 0; background: #222; }
.comparison img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }

.comparison figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(16, 17, 15, 0.76);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transform-copy { padding: 23px 0 8px; }
.transform-copy span { font-family: var(--display); font-size: 27px; }
.transform-copy p { max-width: 520px; margin: 8px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; }

.portfolio {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.portfolio-heading { position: sticky; top: 120px; }
.portfolio-heading h2 { margin-bottom: 32px; }

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.instagram-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
}

.instagram-icon img { width: 17px; height: 17px; }

.photo-grid {
  columns: 2;
  column-gap: 18px;
}

.photo-item {
  margin: 0 0 18px;
  break-inside: avoid;
  background: var(--paper-deep);
}

.photo-item img { width: 100%; height: auto; }

.photo-item figcaption {
  padding: 10px 2px 3px;
  color: #555149;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values {
  min-height: 560px;
  padding: clamp(80px, 10vw, 140px) max(var(--pad), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.values-copy { max-width: 780px; }
.values h2 { font-size: clamp(47px, 6vw, 82px); }
.values-copy > p:last-child { max-width: 630px; margin: 30px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 17px; }
.values .section-kicker { color: #d6b984; }

.values-mark {
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--display);
  font-size: clamp(150px, 22vw, 340px);
  letter-spacing: -0.12em;
  line-height: 0.75;
  white-space: nowrap;
}

.visit-card {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  border: 1px solid var(--line-light);
}

.rating {
  padding: clamp(36px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-deep);
  border-right: 1px solid var(--line-light);
}

.stars { color: var(--gold-dark); font-size: 20px; letter-spacing: 0.14em; }
.rating strong { margin-top: 17px; font-family: var(--display); font-size: clamp(32px, 4vw, 49px); font-weight: 500; }
.rating p { margin: 12px 0 0; color: #5f5b52; }

.visit-info { padding: clamp(38px, 6vw, 82px); }
.visit-info h2 { max-width: 780px; }

.visit-info dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 48px 0 0;
}

.visit-info dl > div { padding-top: 16px; border-top: 1px solid var(--line-light); }
.visit-info dt { color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.visit-info dd { margin: 10px 0 0; color: #514e47; }

.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #2a2c28; }
.button-outline { border-color: var(--line-light); }
.button-outline:hover { border-color: var(--ink); }

.map-wrap { height: 440px; margin-top: 24px; background: #ddd5c8; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.72) contrast(0.96); }

.site-footer {
  padding: 80px var(--pad) 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px minmax(240px, 1fr) auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 62px;
}

.footer-brand { width: 170px; height: 120px; display: grid; place-items: center; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-main > p { max-width: 430px; color: rgba(255, 255, 255, 0.58); }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 13px; border-bottom: 1px solid transparent; }
.footer-links a:hover { color: var(--gold); border-color: var(--gold); }

.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  min-height: 54px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover { transform: translateY(-3px); background: #168947; }
.floating-whatsapp img { width: 23px; height: 23px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1050px) {
  .nav-wrap { grid-template-columns: 138px 1fr auto; gap: 18px; }
  .site-nav { gap: 18px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr); }
  .hero h1 { font-size: clamp(54px, 7vw, 78px); }
  .service-item > div { grid-template-columns: 0.75fr 1fr; gap: 30px; }
  .portfolio { grid-template-columns: 250px minmax(0, 1fr); }
  .footer-main { gap: 35px; }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
    height: 78px;
  }

  .brand { width: 120px; height: 66px; }
  .menu-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 130px var(--pad) 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav a { font-family: var(--display); font-size: clamp(34px, 8vw, 54px); font-weight: 500; letter-spacing: -0.02em; text-transform: none; }

  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-copy { max-width: none; padding: 140px var(--pad) 70px; }
  .hero-visual { min-height: 0; height: auto; aspect-ratio: 4 / 5; }
  .hero-visual { width: 100%; margin-left: 0; }
  .hero-visual::after { background: linear-gradient(0deg, rgba(16, 17, 15, 0.24), transparent 36%); }
  .hero-note { width: 210px; }

  .intro-grid,
  .section-heading,
  .portfolio,
  .values,
  .visit-card { grid-template-columns: 1fr; }

  .intro-grid { gap: 35px; }
  .section-heading { gap: 28px; margin-bottom: 50px; }
  .service-item { grid-template-columns: 90px 1fr; gap: 24px; }
  .service-item > div { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-heading { position: static; }
  .values { gap: 20px; }
  .values-mark { justify-self: end; margin-bottom: -80px; }
  .rating { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .footer-main { grid-template-columns: 170px 1fr; }
  .footer-links { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --pad: 20px; }
  html { scroll-padding-top: 76px; }

  .hero-copy { padding-top: 125px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { margin-top: 24px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 34px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-note { min-height: 110px; width: 190px; padding: 19px 22px; }

  .trust-bar {
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .trust-bar > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .trust-bar > div:last-child { border-bottom: 0; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .intro h2, .section-heading h2, .portfolio-heading h2, .visit h2 { font-size: 40px; }
  .intro-copy { padding-top: 0; }
  .section-kicker, .eyebrow { margin-bottom: 16px; }

  .service-item { grid-template-columns: 1fr; gap: 9px; padding: 25px 0; }
  .service-item > span { padding-top: 0; }
  .service-item h3 { font-size: 30px; }

  .section-dark { padding: 76px var(--pad); }
  .transform-grid { grid-template-columns: 1fr; gap: 52px; }

  .photo-grid { columns: 1; }
  .photo-item { margin-bottom: 28px; }

  .values { min-height: 0; padding: 76px var(--pad) 48px; }
  .values h2 { font-size: 45px; }
  .values-copy > p:last-child { font-size: 16px; }
  .values-mark { font-size: 170px; margin: 20px -12px -28px 0; }

  .visit-card { border-left: 0; border-right: 0; }
  .visit-info dl { grid-template-columns: 1fr; }
  .visit-actions { flex-direction: column; }
  .visit-actions .button { width: 100%; }
  .map-wrap { height: 340px; margin: 18px calc(var(--pad) * -1) 0; }

  .site-footer { padding-top: 62px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; }
  .footer-brand { width: 170px; }
  .footer-links { grid-column: auto; flex-direction: row; flex-wrap: wrap; gap: 14px 22px; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
