@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');

:root {
  --cream: #f7f4ef;
  --ivory: #faf8f4;
  --charcoal: #1a1a1a;
  --graphite: #2d2d2d;
  --mid: #5a5a5a;
  --light: #9a9a9a;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8a6d48;
  --border: rgba(184, 149, 106, 0.2);
  --border-light: rgba(184, 149, 106, 0.1);
  --white: #ffffff;
  --shadow: 0 2px 40px rgba(26,26,26,0.08);
  --shadow-deep: 0 8px 60px rgba(26,26,26,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(250, 248, 244, 0.98);
  box-shadow: var(--shadow);
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark::before {
  content: 'D';
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─── BURGER ─── */
.burger {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 0;
  z-index: 1100;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

.burger span:nth-child(1) { width: 28px; }
.burger span:nth-child(2) { width: 20px; }
.burger span:nth-child(3) { width: 24px; }

.burger.active span:nth-child(1) { width: 24px; transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { width: 24px; transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MENU OVERLAY ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-overlay.open {
  pointer-events: all;
  opacity: 1;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
}

.menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--ivory);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 100px 3rem 3rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.menu-overlay.open .menu-panel {
  transform: translateX(0);
}

.menu-panel nav-links {
  display: flex;
  flex-direction: column;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-links li {
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.open .menu-links li {
  opacity: 1;
  transform: translateX(0);
}

.menu-overlay.open .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.open .menu-links li:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.open .menu-links li:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.open .menu-links li:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.open .menu-links li:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.open .menu-links li:nth-child(6) { transition-delay: 0.35s; }

.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.menu-links a:hover { color: var(--gold); }

.menu-links a .arrow {
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.menu-links a:hover .arrow { opacity: 1; transform: translateX(4px); }

.menu-footer {
  margin-top: auto;
  font-size: 12px;
  color: var(--light);
  letter-spacing: 0.05em;
}

/* ─── PAGE WRAPPER ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184,149,106,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184,149,106,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* ─── STATUS BADGE ─── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 149, 106, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.status-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ─── APP STORE BUTTONS ─── */
.app-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.app-btn:hover {
  background: var(--graphite);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,26,26,0.2);
}

.app-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

.app-btn-text { text-align: left; }
.app-btn-pre { font-size: 10px; opacity: 0.7; line-height: 1; display: block; letter-spacing: 0.05em; }
.app-btn-name { font-size: 15px; font-weight: 600; line-height: 1.3; display: block; }

/* ─── COMING SOON MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.5);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-box {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--border);
  max-width: 400px;
  width: 100%;
  padding: 3rem;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.modal-overlay.open .modal-box { transform: scale(1); }

.modal-icon {
  width: 60px; height: 60px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 24px;
}

.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.modal-box p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-close {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--gold-dark); }

/* ─── FEATURES SECTION ─── */
.section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
  font-weight: 300;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.feature-card {
  background: var(--ivory);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.feature-card:hover { background: var(--cream); }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.feature-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── STATS ─── */
.stats-strip {
  background: var(--charcoal);
  padding: 4rem 2rem;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── TIMELINE ─── */
.timeline {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1px 1fr;
  gap: 0 2rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  padding-top: 0.2rem;
  text-align: right;
  letter-spacing: 0.05em;
}

.timeline-line {
  position: relative;
  background: var(--border);
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-content { padding-top: 0; }

.timeline-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 14px;
  color: var(--mid);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.about-visual {
  position: relative;
}

.about-visual-box {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(184,149,106,0.1) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual-box::before {
  content: 'DERMOELITE';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(184,149,106,0.12);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  position: absolute;
  right: 2rem;
}

.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-weight: 300;
  color: rgba(184,149,106,0.25);
  line-height: 1;
  user-select: none;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.5rem 2rem;
  width: 200px;
}

.about-badge-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.about-badge-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.values-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--border-light);
  transition: border-color 0.2s;
}

.value-item:hover { border-color: var(--gold); }

.value-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.value-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.value-item p {
  font-size: 13px;
  color: var(--mid);
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info { }

.info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.info-block:last-child { border-bottom: none; }

.info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.info-block p, .info-block address {
  font-size: 15px;
  color: var(--charcoal);
  font-style: normal;
  line-height: 1.8;
}

.info-block a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.info-block a:hover { color: var(--gold); border-color: var(--gold); }

/* ─── FORM ─── */
.contact-form { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  background: rgba(184,149,106,0.08);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

.form-success p { font-size: 14px; color: var(--gold-dark); }

/* ─── BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ─── POLICY ─── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin: 2.5rem 0 0.75rem;
  color: var(--charcoal);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.policy-update {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 6px 14px;
  border: 1px solid var(--border);
}

/* ─── BLOG / FAQ PAGE ─── */
.faq-list { margin-top: 3rem; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  list-style: none;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-style: normal;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p { font-size: 15px; color: var(--mid); line-height: 1.8; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 2rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(184,149,106,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}

.page-hero .hero-eyebrow { animation: none; }
.page-hero h1 { font-size: clamp(40px, 6vw, 76px); animation: none; }
.page-hero .hero-tagline { animation: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { }

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 13px; line-height: 1.7; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-col address { font-style: normal; font-size: 13px; line-height: 2; }

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  line-height: 2;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer-copy strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-legal-links a:hover { color: var(--gold-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NEWSLETTER ─── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(184,149,106,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}

.newsletter-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.newsletter-strip p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  background: var(--white);
  border-radius: 0;
}

.newsletter-form input:focus { border-color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .about-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .timeline-item {
    grid-template-columns: 80px 1px 1fr;
    gap: 0 1rem;
  }
  
  .about-badge { position: static; margin-top: 1.5rem; width: auto; }
  
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); border-bottom: none; }
  
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
