:root {
  --bg: #f8f6f2;
  --bg-soft: #f1eee7;
  --card: rgba(255,255,255,0.78);
  --text: #3e3a33;
  --muted: #6e675d;
  --accent: #b9b3a6;
  --accent-dark: #8d8679;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(62,58,51,0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfbf9 0%, #f7f3ed 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.section-tag, .eyebrow {
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-size: .78rem;
  margin: 0 0 14px;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 700;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); }
h3 { font-size: 1.85rem; }
p { line-height: 1.8; color: var(--muted); margin: 0 0 16px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 30;
  background: rgba(248,246,242,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185,179,166,0.22);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow); }
.nav-menu { display: flex; align-items: center; gap: 22px; }
.nav-menu a { color: var(--text); font-weight: 500; }
.menu-toggle { display: none; background: none; border: 0; padding: 0; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid var(--accent-dark);
  background: var(--accent-dark); color: var(--white); font-weight: 600;
  box-shadow: var(--shadow); transition: transform .3s ease, background .3s ease, color .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); }
.btn-small { padding: 10px 18px; }

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(25,23,20,0.38) 0%, rgba(25,23,20,0.12) 48%, rgba(25,23,20,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 110px; max-width: 720px; }
.hero h1, .hero p, .hero .eyebrow { color: #fff; }
.hero h1 span { font-style: italic; }
.hero-text { max-width: 620px; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero .btn-outline { border-color: rgba(255,255,255,0.75); color: #fff; }

.intro-grid, .experiences-grid, .video-grid, .contact-grid { align-items: stretch; }
.intro-card, .experience-photo img, .video-wrapper, .contact-form, .mini-card {
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.intro-card {
  background: linear-gradient(145deg, rgba(185,179,166,.25), rgba(255,255,255,.8));
  padding: 22px; display: flex; align-items: center; min-height: 100%;
}
.mini-card { background: rgba(255,255,255,.9); padding: 28px; width: 100%; }
.mini-card ul { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.9; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card, .social-card {
  background: var(--card); border: 1px solid rgba(185,179,166,.24); padding: 30px; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .3s ease, border-color .3s ease;
}
.service-card:hover, .social-card:hover, .gallery-item:hover { transform: translateY(-4px); border-color: var(--accent-dark); }
.service-icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(185,179,166,.18); color: var(--accent-dark); font-size: 1.5rem; margin-bottom: 18px;
}
.experience-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-list div {
  background: rgba(255,255,255,.7); padding: 16px 18px; border-radius: 18px; border: 1px solid rgba(185,179,166,.18);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  border: 0; padding: 0; background: none; cursor: pointer; overflow: hidden;
  border-radius: 24px; box-shadow: var(--shadow); min-height: 240px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.video-wrapper {
  overflow: hidden; background: #000; min-height: 420px;
}
.video-wrapper iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card span { display: block; color: var(--accent-dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; }
.contact-list { display: grid; gap: 14px; }
.contact-form {
  background: rgba(255,255,255,.88); padding: 28px; display: grid; gap: 14px;
}
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(185,179,166,.35); border-radius: 16px;
  background: #fff; padding: 14px 16px; color: var(--text);
}
.contact-form small { color: var(--muted); }
.site-footer { padding: 28px 0 36px; border-top: 1px solid rgba(185,179,166,.24); }
.footer-wrap { text-align: center; }
.footer-wrap p { margin: 0; }
.footer-wrap a { text-decoration: underline; }

.floating-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 35;
}
.float-btn {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; box-shadow: 0 18px 40px rgba(37,211,102,.33);
}
.float-btn svg { width: 30px; fill: #fff; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: .3s ease; z-index: 60;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(100%, 960px); max-height: 88vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 18px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; cursor: pointer;
}

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

@media (max-width: 920px) {
  .grid-2, .cards-grid, .gallery-grid, .social-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu {
    position: absolute; top: 80px; left: 16px; right: 16px; background: rgba(248,246,242,.98);
    border-radius: 22px; box-shadow: var(--shadow); padding: 18px; display: none; flex-direction: column; align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .grid-2, .cards-grid, .gallery-grid, .social-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 120px; }
  .gallery-item { min-height: 220px; }
  .video-wrapper, .video-wrapper iframe, .experience-photo img { min-height: 280px; }
  .brand span { font-size: .95rem; }
}
