:root {
  --ink: #141313;
  --ink-soft: #4f4742;
  --paper: #f7f3ed;
  --paper-2: #fffaf3;
  --champagne: #c7a96b;
  --champagne-dark: #9f8148;
  --line: rgba(20, 19, 19, 0.14);
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 28px 80px rgba(20, 19, 19, 0.16);
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 10%, rgba(199,169,107,.28), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(20,19,19,.08), transparent 20%),
    linear-gradient(180deg, var(--paper), #efe8dd 58%, var(--paper));
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  z-index: 100;
  transform: translateY(-140%);
  transition: transform .25s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 0;
  z-index: 60;
  transition: width .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border: 1px solid transparent;
  border-radius: 0 0 28px 28px;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1120px, calc(100vw - 28px));
  height: 68px;
  padding-left: 12px;
  background: rgba(247, 243, 237, .78);
  border-color: rgba(20, 19, 19, .08);
  box-shadow: 0 20px 60px rgba(20, 19, 19, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
}

.brand-text { font-size: 1rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  color: rgba(20,19,19,.72);
  transition: color .25s ease;
}

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

.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20,19,19,.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease;
}

.nav-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  padding: 132px 0 68px;
}

.hero-copy h1,
.section h2,
.statement p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.06em;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(4.6rem, 10vw, 9.5rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--champagne-dark);
  font-size: .76rem;
  font-weight: 800;
}

.hero-text {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(20,19,19,.22);
}

.button-primary:hover {
  box-shadow: 0 22px 55px rgba(20,19,19,.28);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.hero-stats span {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: .84rem;
}

.hero-stats strong {
  display: block;
  color: var(--ink);
  margin-bottom: 5px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.image-stack {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #ddd;
  isolation: isolate;
}

.image-stack::after,
.gallery-item::after,
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20,19,19,.42));
  opacity: .72;
  pointer-events: none;
}

.image-stack img,
.gallery-item img,
.split-image img {
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .5s ease;
  filter: saturate(.82) contrast(1.02);
}

.image-stack:hover img,
.gallery-item:hover img,
.split-image:hover img {
  transform: scale(1.045);
}

.image-stack-one {
  top: 10px;
  right: 0;
  width: 74%;
  height: 520px;
}

.image-stack-two {
  left: 0;
  bottom: 0;
  width: 46%;
  height: 310px;
  border: 9px solid var(--paper);
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 56px;
  width: min(260px, 55%);
  padding: 22px;
  color: var(--white);
  background: rgba(20,19,19,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(20,19,19,.2);
  animation: float 4.8s ease-in-out infinite;
}

.floating-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 800;
}

.floating-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,.3);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 19px 34px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 800;
  color: rgba(20,19,19,.58);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 112px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: end;
}

.section h2 {
  font-size: clamp(3rem, 5.4vw, 6.3rem);
}

.about-copy p,
.section-heading p,
.contact-intro p,
.split-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.about-card {
  min-height: 340px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.card-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.6rem;
  line-height: .9;
  color: var(--champagne);
}

.about-card p {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,.76);
}

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

.pillar-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.42);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.74);
  box-shadow: 0 22px 60px rgba(20,19,19,.12);
}

.pillar-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--champagne-dark);
  font-weight: 900;
}

.pillar-card h3 {
  margin: auto 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.3rem;
  letter-spacing: -.04em;
}

.pillar-card p {
  margin: 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 68px;
  align-items: center;
}

.split-image {
  position: relative;
  height: 680px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.timeline {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 58px 160px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.timeline span {
  color: var(--champagne-dark);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  margin: 0;
}

.timeline h3 {
  font-size: 1.05rem;
}

.timeline p {
  color: var(--ink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

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

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ddd;
  box-shadow: 0 18px 44px rgba(20,19,19,.12);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -.02em;
}

.gallery-item figcaption span {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
}

.statement {
  width: min(1420px, calc(100vw - 28px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 132px) clamp(22px, 6vw, 90px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.statement::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 70% 30%, rgba(199,169,107,.28), transparent 34%);
}

.statement p {
  position: relative;
  max-width: 980px;
  font-size: clamp(3.1rem, 6.2vw, 7.6rem);
}

.contact {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.contact-form {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(20,19,19,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(20,19,19,.12);
  backdrop-filter: blur(14px);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(20,19,19,.74);
  font-size: .86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20,19,19,.15);
  background: rgba(255,255,255,.74);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--champagne-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(199,169,107,.18);
}

.contact-form > label,
.checkbox,
.form-note,
.form-submit,
.form-status {
  margin-top: 18px;
}

.hidden-field {
  display: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ink);
}

.form-note {
  padding: 16px;
  border: 1px solid rgba(199,169,107,.35);
  border-radius: 18px;
  background: rgba(199,169,107,.12);
  color: var(--ink-soft);
  font-size: .9rem;
}

.form-submit {
  width: 100%;
  border: none;
}

.form-status {
  min-height: 22px;
  color: var(--champagne-dark);
  font-weight: 800;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0 46px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  z-index: 70;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .38);
  animation: pulse 2.2s infinite;
  transition: transform .22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-14px,0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.42), 0 18px 40px rgba(37,211,102,.38); }
  72% { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 18px 40px rgba(37,211,102,.38); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 18px 40px rgba(37,211,102,.38); }
}

@media (max-width: 1020px) {
  :root { --container: min(100% - 28px, 880px); }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    width: min(360px, calc(100vw - 28px));
    padding: 24px;
    display: grid;
    gap: 18px;
    background: rgba(247, 243, 237, .95);
    border: 1px solid rgba(20,19,19,.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }

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

  .hero,
  .about-grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 124px;
    gap: 36px;
  }

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

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

  .contact-intro {
    position: static;
  }

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

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

  .section-heading .eyebrow {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
  }

  .brand-text {
    font-size: .92rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

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

  .image-stack-one {
    width: 82%;
    height: 390px;
  }

  .image-stack-two {
    width: 54%;
    height: 230px;
  }

  .floating-card {
    right: 14px;
    bottom: 26px;
    width: 210px;
  }

  .section {
    padding: 72px 0;
  }

  .about-card {
    min-height: 260px;
  }

  .pillars,
  .gallery,
  .form-grid,
  .timeline div {
    grid-template-columns: 1fr;
  }

  .split-image {
    height: 480px;
  }

  .gallery {
    grid-auto-rows: 360px;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .statement {
    border-radius: 24px;
  }

  .statement p {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

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

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