:root {
  --bg: #FFFFFF;
  --text: #111111;
  --accent: #D4A373;
  --muted: #6B7280;
  --line: #E5E7EB;
  --card: #FAFAF9;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(17,17,17,.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; margin: 0 0 .75rem; letter-spacing: -.02em; }
.section-lead { color: var(--muted); max-width: 760px; margin: 0 0 2rem; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; margin-bottom: .6rem; display: inline-block; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.15rem; border-radius: 999px; border: 1px solid var(--text);
  font-weight: 600; transition: .2s ease; cursor: pointer; background: var(--text); color: #fff;
}
.btn:hover { transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--text); border-color: var(--line); }
.btn.accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.topbar {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(229,231,235,.8);
}
.nav {
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .8rem; font-weight: 700; letter-spacing: -.02em; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden; background: #fff;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand small { color: var(--muted); font-weight: 500; display:block; font-size: .75rem; margin-top: -2px; }
.nav-links { display: flex; gap: 1.2rem; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a.active, .nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: .6rem; align-items: center; }
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; align-items: center; justify-content: center; cursor: pointer;
}
.burger span, .burger::before, .burger::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s ease;
}
.burger span { margin: 4px 0; }
.burger.is-open::before { transform: translateY(6px) rotate(45deg); }
.burger.is-open span { opacity: 0; }
.burger.is-open::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none; border-top: 1px solid var(--line); padding: .7rem 0 1rem; background: rgba(255,255,255,.96);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .85rem .2rem; color: var(--text); border-bottom: 1px solid #f3f4f6; }
.hero { padding: 3rem 0 2rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; align-items: end; align-items: center;}
.hero-copy h1 { font-size: clamp(2.4rem, 7vw, 5rem); line-height: .95; letter-spacing: -.03em; margin: 0 0 1rem; }
.hero-copy p { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.25rem; }
.hero-stack { display: grid; gap: 1rem; }
.photo-card {
  border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow);
}
.photo-card.tall img { aspect-ratio: 4 / 5; object-fit: cover; }
.photo-card.wide img { aspect-ratio: 16 / 10; object-fit: cover; }
.story-grid { display: grid; gap: 2rem; }
.story {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items: center;
  padding: 1rem; border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px);
}
.story:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.story:nth-child(even) .story-copy { order: 2; }
.story:nth-child(even) .story-media { order: 1; }
.story-copy h3 { font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.05; margin: 0 0 .7rem; letter-spacing: -.02em; }
.story-copy p { color: var(--muted); margin: 0 0 1rem; }
.story-meta { display: flex; gap: .8rem; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.story-media img { border-radius: calc(var(--radius) - 4px); aspect-ratio: 4/3; object-fit: cover; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature {
  padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.feature h4 { margin: .2rem 0 .4rem; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; background: #fff; display: flex; flex-direction: column; gap: .7rem;
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 10px 30px rgba(212,163,115,.14); }
.price-card h3 { margin: 0; font-size: 1.2rem; }
.price { font-size: 2rem; line-height: 1; letter-spacing: -.03em; }
.price small { color: var(--muted); font-size: .85rem; }
.price-card ul { margin: 0; padding-left: 1rem; color: var(--muted); }
.price-card li { margin: .35rem 0; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quote {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; background: var(--card);
}
.quote p { margin: 0 0 .8rem; }
.quote strong { display: block; }
.quote span { color: var(--muted); font-size: .9rem; }
.faq-list { display: grid; gap: .7rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; background: #fff; border: 0; text-align: left; padding: 1rem; font: inherit; font-weight: 600; cursor: pointer; display:flex; justify-content:space-between; gap:1rem; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { margin: 0; padding: 0 1rem 1rem; color: var(--muted); }
.faq-item.open .faq-a { max-height: 220px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; align-items: start; }
.contact-card, .form-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; background: #fff;
}
.contact-card p { color: var(--muted); margin-top: .3rem; }
.contact-list { display: grid; gap: .7rem; margin-top: 1rem; }
.contact-list a, .contact-list div { padding: .75rem; border-radius: 12px; background: var(--card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: .9rem; }
input, textarea, select {
  width: 100%; padding: .9rem .95rem; border: 1px solid var(--line); border-radius: 12px; font: inherit; background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.page-hero { padding: 2.3rem 0 1rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: .95; letter-spacing: -.03em; margin: .2rem 0 .7rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: .8rem; }
.gallery-grid figure { margin: 0; border-radius: 16px; overflow: hidden; }
.gallery-grid img { object-fit: cover; height: 100%; }
.gallery-grid .span-4 { grid-column: span 4; }
.gallery-grid .span-6 { grid-column: span 6; }
.gallery-grid .span-8 { grid-column: span 8; }
.gallery-grid .span-12 { grid-column: span 12; }
.gallery-grid .h-sm { height: 220px; }
.gallery-grid .h-md { height: 320px; }
.gallery-grid .h-lg { height: 420px; }
.footer {
  margin-top: 3rem; border-top: 1px solid var(--line); padding: 2rem 0 3rem;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 1rem; }
.footer h4 { margin: 0 0 .65rem; font-size: .95rem; }
.footer p, .footer a { color: var(--muted); }
.footer-links { display: grid; gap: .4rem; }
.legal { border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 1rem; color: var(--muted); font-size: .9rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.alert {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80; width: min(420px, calc(100% - 2rem));
  background: #111; color: #fff; border-radius: 16px; padding: .95rem 1rem; box-shadow: 0 15px 45px rgba(0,0,0,.25);
  transform: translateY(120%); opacity: 0; pointer-events: none; transition: .25s ease;
}
.alert.show { transform: translateY(0); opacity: 1; }
.alert strong { display: block; margin-bottom: .2rem; }
.alert .accent { color: var(--accent); }
.content-page { max-width: 860px; }
.content-page h2 { margin-top: 2rem; font-size: 1.4rem; }
.content-page p, .content-page li { color: var(--muted); }
.content-page ul { padding-left: 1rem; }
@media (max-width: 980px) {
  .hero-grid, .story, .story:nth-child(even), .contact-grid { grid-template-columns: 1fr; }
  .story:nth-child(even) .story-copy, .story:nth-child(even) .story-media { order: initial; }
  .features, .pricing, .testimonials, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid .span-8, .gallery-grid .span-6, .gallery-grid .span-4 { grid-column: span 12; }
  .gallery-grid .h-lg, .gallery-grid .h-md { height: 280px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn.secondary { display: none; }
  .burger { display: inline-flex; flex-direction: column;}
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 1.2rem; }
  .section { padding: 3.2rem 0; }
  .accent {display: none;}
}
