* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #EAEFEF;
  --silver: #BFC9D1;
  --navy: #25343F;
  --orange: #FF9B51;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  color: var(--cream);
}

/* ── HERO ── */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?w=1600&q=80') center/cover no-repeat;
  opacity: 0.3;
}

.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.88));
}

.hero-content {
  position: relative;
  max-width: 600px;
  padding: 2rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.logo span { color: var(--orange); }

.tagline {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  color: rgba(234,239,239,0.8);
  font-weight: 300;
}

.btn {
  position: relative;
  display: inline-block;
  border: 1px solid var(--silver);
  padding: 0.85rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
.btn::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.35s ease;
}
.btn:hover::after { width: 100%; }

/* ── SECTIONS ── */
.section {
  display: flex;
  gap: 4rem;
  padding: 4rem 6%;
  align-items: center;
  border-top: 1px solid rgba(191,201,209,0.15);
}
.section:nth-child(even) {
  flex-direction: row-reverse;
  background: #1f2f3a;
}

.text { flex: 1; }

.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--orange);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}
.text p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(234,239,239,0.65);
  font-weight: 300;
}

/* ── IMAGE ── */
.image { flex: 1; }
.image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(191,201,209,0.15);
  display: block;
  transition: transform 0.4s ease;
}
.section:hover .image img { transform: scale(1.02); }

/* ── LIGHT VARIANT ── */
.light {
  background: var(--cream);
  color: var(--navy);
}
.light .text p { color: rgba(37,52,63,0.65); }
.light .eyebrow { color: var(--orange); }

/* ── BRAND STATEMENT ── */
.statement {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--cream);
  color: var(--navy);
  border-top: 1px solid rgba(191,201,209,0.4);
}
.statement h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.statement p {
  max-width: 600px;
  margin: auto;
  font-size: 0.92rem;
  color: rgba(37,52,63,0.65);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: #1c2a33;
  padding: 3rem 6%;
  border-top: 1px solid rgba(191,201,209,0.15);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-logo span { color: var(--orange); }
.footer-desc {
  font-size: 0.82rem;
  max-width: 300px;
  color: rgba(234,239,239,0.5);
  line-height: 1.7;
  font-weight: 300;
}
.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a {
  color: rgba(234,239,239,0.55);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(191,201,209,0.12);
  padding-top: 1.2rem;
  font-size: 0.72rem;
  color: rgba(234,239,239,0.35);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section, .section:nth-child(even) { flex-direction: column; gap: 2rem; }
  .image img { height: 240px; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 1.2rem; }
  .logo { font-size: 2.4rem; letter-spacing: 0.3em; }
  .statement h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 5%; }
  .text h2 { font-size: 1.8rem; }
}