:root {
  --cream: #faf6f0;
  --cream-2: #f3ece1;
  --sand: #e8dcc8;
  --gold: #b8945f;
  --gold-dark: #9a7842;
  --ink: #2b2622;
  --ink-soft: #5d544c;
  --line: #e3d8c6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 50px -22px rgba(80, 60, 30, .35);
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, iframe, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.1; letter-spacing: .3px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 10px;
}
em { font-style: italic; color: var(--gold-dark); }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 240, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: .35s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(0,0,0,.25); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #d8b87e, var(--gold-dark));
  color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 20px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: 'Cormorant Garamond', serif; font-size: 19px; letter-spacing: 2px; }
.brand-text small { font-size: 10px; letter-spacing: 4px; color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; color: var(--ink-soft); font-weight: 400; transition: .2s; }
.nav a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 9px 18px; border-radius: 50px;
  font-weight: 500; font-size: 14px !important;
}
.nav-cta:hover { background: var(--gold-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(250,246,240,.55), rgba(250,246,240,.9)),
    repeating-linear-gradient(90deg, rgba(184,148,95,.10) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, var(--cream-2), var(--sand));
}
.hero-bg::after {
  content: ""; position: absolute; right: -6%; top: 0; bottom: 0; width: 46%;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(184,148,95,.18));
  box-shadow: -30px 0 80px -40px rgba(184,148,95,.5);
  border-radius: 0 0 0 40%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .9;
}
.hero-inner { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 760px; }
.hero h1 { font-size: clamp(42px, 7vw, 82px); margin: 6px 0 22px; }
.hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); }
.hero-badges span { font-weight: 500; }

.btn {
  display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 500;
  font-size: 15px; transition: .25s; cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold-dark); color: #fff; box-shadow: 0 14px 30px -12px rgba(154,120,66,.6); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-ghost:hover { background: var(--gold-dark); color: #fff; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(32px, 5vw, 50px); }
.section-lead { color: var(--ink-soft); margin-top: 12px; font-size: 17px; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; transition: .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { font-size: 24px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* GALLERY */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px;
}
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.g-img { position: absolute; inset: 0; transition: transform .6s ease; }
.gallery figure:hover .g-img { transform: scale(1.08); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 16px; color: #fff; font-weight: 500; letter-spacing: .5px;
  background: linear-gradient(0deg, rgba(43,38,34,.78), transparent);
}
.g1 { grid-column: span 2; grid-row: span 2; }
.g1 .g-img { background: linear-gradient(135deg, #e9d9bf, #c9a877); }
.g2 .g-img { background: linear-gradient(135deg, #cfc4b0, #9b8e76); }
.g3 .g-img { background: linear-gradient(135deg, #d9c7b0, #b39a6e); }
.g4 .g-img { background: linear-gradient(135deg, #e3d3bd, #b89b73); }
.g5 { grid-column: span 2; }
.g5 .g-img { background: linear-gradient(135deg, #ddd0bb, #a8916b); }
.g6 .g-img { background: linear-gradient(135deg, #cdbda3, #8f7c5c); }
.gallery-note { text-align: center; margin-top: 30px; color: var(--ink-soft); }
.gallery-note a { color: var(--gold-dark); font-weight: 600; }

/* COLLECTION */
.collection { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.col-item {
  position: relative; height: 130px; border-radius: var(--radius); overflow: hidden;
  display: grid; place-items: center; border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--white), var(--cream-2));
  transition: .3s;
}
.col-item span {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--ink);
  position: relative; z-index: 2;
}
.col-item::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0; transition: .3s;
}
.col-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.col-item:hover::before { opacity: 1; }
.col-item:hover span { color: #fff; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.stats { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.stats div { display: flex; flex-direction: column; }
.stats strong { font-family: 'Cormorant Garamond', serif; font-size: 38px; color: var(--gold-dark); line-height: 1; }
.stats span { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); }
.about-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow);
}
.about-card h3 { font-size: 26px; margin-bottom: 18px; }
.about-card ul { list-style: none; }
.about-card li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.about-card li:last-child { border-bottom: 0; }
.about-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-dark); }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; transition: .25s;
}
.info-row:not(.info-static):hover { border-color: var(--gold); transform: translateX(4px); }
.info-ic { font-size: 22px; }
.info-row span strong { font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.qr-card {
  display: flex; gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; transition: .25s; text-decoration: none; color: inherit;
}
.qr-card:hover { border-color: var(--gold); transform: translateX(4px); }
.qr-card img { width: 120px; height: 120px; flex: 0 0 auto; border-radius: 8px; background: #fff; padding: 6px; border: 1px solid var(--line); }
.qr-card span strong { font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* FOOTER */
.site-footer { background: var(--ink); color: #d9cfc2; padding: 50px 0 30px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: #c2b6a4; }
.copyright { font-size: 13px; color: #9a8f80; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: .25s;
}
.wa-float:hover { transform: scale(1.08); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .cards, .collection { grid-template-columns: repeat(2, 1fr); }
  .about, .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g1 { grid-column: span 2; }
  .g5 { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; top: 74px; right: 0; left: 0;
    background: var(--cream); flex-direction: column; gap: 0; padding: 12px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: .35s; box-shadow: var(--shadow);
  }
  .nav.open { transform: none; }
  .nav a { padding: 12px 24px; width: 100%; }
  .nav-cta { margin: 8px 24px; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cards, .collection, .gallery { grid-template-columns: 1fr; }
  .g1, .g5 { grid-column: span 1; }
  .hero-badges { gap: 12px; }
  .section { padding: 70px 0; }
}
