
:root{
  --bg:#eef1ea;
  --bg-soft:#f6f8f4;
  --ink:#1f2c22;
  --muted:#617266;
  --accent:#355c41;
  --accent-2:#7f9b84;
  --line:rgba(31,44,34,.10);
  --white:#fbfdf9;
  --shadow:0 20px 60px rgba(31,44,34,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--ink);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1160px, calc(100% - 40px)); margin:0 auto}

.site-header{
  position:relative;
  width:100%;
  background:var(--bg);
  border-bottom:1px solid rgba(31,44,34,.08);
  z-index:20;
  padding:18px 0;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.logo{height:68px; width:auto}
.header-nav{display:flex; align-items:center; gap:14px}
.header-link{
  color:var(--ink); font-size:15px; font-weight:500; opacity:.95;
}
.header-cta{
  padding:12px 18px;
  border-radius:999px;
  border:none;
  background:var(--accent);
  color:#fff;
  font-size:14px; font-weight:600;
  transition:.25s ease;
}
.header-cta:hover{transform:translateY(-1px); background:#2f5038}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
  animation:heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  from{transform:scale(1)}
  to{transform:scale(1.08)}
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,17,11,.70) 0%, rgba(8,17,11,.36) 42%, rgba(8,17,11,.20) 100%);
}
.hero-content{
  position:relative; z-index:2; color:#fff;
  padding:80px 0 90px;
  max-width:760px;
  animation:fadeUp 1.1s ease forwards;
}
@keyframes fadeUp{
  from{opacity:0; transform:translateY(28px)}
  to{opacity:1; transform:translateY(0)}
}
.hero-kicker{
  margin:0 0 16px;
  letter-spacing:.20em;
  text-transform:uppercase;
  font-size:13px;
  opacity:.92;
}
.hero h1{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(50px, 8vw, 90px);
  line-height:.95;
  font-weight:600;
}
.hero-subtitle{
  margin:18px 0 0;
  max-width:560px;
  font-size:21px;
  line-height:1.55;
  color:rgba(255,255,255,.92);
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:14px;
  margin-top:32px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:54px; padding:0 24px;
  border-radius:999px;
  font-size:15px; font-weight:600;
  transition:.25s ease;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 14px 30px rgba(24,51,33,.28);
}
.btn-primary:hover{transform:translateY(-2px); background:#2f5038}
.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
}
.btn-secondary:hover{transform:translateY(-2px); background:rgba(255,255,255,.16)}
.btn-full{width:100%}

.scroll-indicator{
  position:absolute; z-index:3;
  left:50%; bottom:26px; transform:translateX(-50%);
  width:36px; height:58px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  display:flex; align-items:flex-start; justify-content:center;
  padding-top:10px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}
.scroll-indicator span{
  width:6px; height:6px; border-radius:50%; background:#fff;
  animation:scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{transform:translateY(0); opacity:1}
  60%{transform:translateY(20px); opacity:.25}
  100%{transform:translateY(0); opacity:1}
}

.intro-section, .gallery-section, .moments-section, .wide-image-section, .contact-section{
  padding:90px 0;
}
.intro-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:28px;
}
.intro-copy, .intro-quote, .form-card{
  border:1px solid var(--line);
  background:var(--white);
  border-radius:32px;
  box-shadow:var(--shadow);
}
.intro-copy{
  padding:42px;
}
.intro-quote{
  padding:42px;
  display:flex; align-items:flex-end;
  background:#2f6b5d;
  color:#fff;
}
.intro-quote p{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(36px,4.5vw,58px);
  line-height:1.02;
}

.section-label{
  margin:0 0 14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  color:#6d806f;
}
.intro-copy h2, .section-head h2, .contact-copy h2{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(40px,5vw,64px);
  line-height:1;
  font-weight:600;
}
.intro-copy p:last-child,
.contact-copy p{
  margin:18px 0 0;
  font-size:18px;
  line-height:1.75;
  color:var(--muted);
}

.section-head{
  max-width:860px;
  margin-bottom:26px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:1.28fr .86fr .86fr;
  gap:18px;
}
.gallery-card{
  overflow:hidden;
  border-radius:28px;
  min-height:320px;
}
.gallery-card-large{min-height:620px}
.gallery-card img, .wide-image-card img, .moment-card img{
  width:100%; height:100%; object-fit:cover;
}
.gallery-card img{transition:transform .7s ease}
.gallery-card:hover img, .moment-card:hover img, .wide-image-card:hover img{transform:scale(1.03)}

.moments-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.moment-card{
  overflow:hidden;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.moment-card img{
  height:300px;
}
.moment-copy{
  padding:24px 24px 28px;
}
.moment-copy h3{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  line-height:1;
}
.moment-copy p{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
}

.wide-image-card{
  overflow:hidden;
  border-radius:34px;
  min-height:540px;
}

.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:start;
}
.contact-copy{
  padding-top:12px;
}
.contact-note{
  max-width:440px;
}
.form-card{
  padding:34px;
}
.contact-form{
  display:grid;
  gap:18px;
}
.form-group label{
  display:block;
  margin-bottom:8px;
  font-size:14px; font-weight:600;
  color:var(--accent);
}
.form-group input, .form-group select{
  width:100%;
  min-height:54px;
  border:1px solid #d8dfd7;
  background:#fcfcfa;
  border-radius:16px;
  padding:0 16px;
  font-size:15px;
  font-family:'Inter',sans-serif;
  color:var(--ink);
}
.form-group input:focus, .form-group select:focus{
  outline:none;
  border-color:#7f9b84; background:#fff;
  box-shadow:0 0 0 4px rgba(127,155,132,.14);
}
.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}
.checkbox-row input{
  margin-top:3px;
}
.hidden-field{display:none}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 960px){
  .logo{height:54px}
  .header-link{display:none}
  .intro-grid, .contact-grid, .moments-grid, .gallery-grid{
    grid-template-columns:1fr;
  }
  .gallery-card-large, .gallery-card, .wide-image-card{
    min-height:320px;
  }
  .hero-content{padding:120px 0 86px}
  .hero h1{font-size:56px}
  .hero-subtitle{font-size:18px}
  .intro-copy, .intro-quote, .form-card{padding:28px}
}

@media (max-width: 640px){
  .container{width:min(100% - 24px, 1160px)}
  .site-header{padding:18px 0}
  .header-cta{padding:11px 14px; font-size:13px}
  .logo{height:46px}
  .hero-content{padding:110px 0 90px}
  .hero h1{font-size:48px}
  .hero-subtitle{font-size:17px}
  .hero-actions{gap:12px}
  .btn{width:100%}
  .intro-section, .gallery-section, .moments-section, .wide-image-section, .contact-section{
    padding:64px 0;
  }
  .moment-copy h3{font-size:32px}
}


.contact-grid-single{
  grid-template-columns:1fr;
}
.contact-copy-centered{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  padding-top:0;
}
.contact-actions{
  justify-content:center;
  margin-top:30px;
}
