/* ═══════════════════════════════════════════════════════════
   HOTEL GENOVIE — HOUSE STYLESHEET
   ═══════════════════════════════════════════════════════════ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  --cream:        #F5F0E6;
  --cream-light:  #FAF7F0;
  --cream-dark:   #EDE6D6;
  --black:        #0E0C09;
  --charcoal:     #1E1A15;
  --charcoal-mid: #2E2922;
  --gold:         #B8952A;
  --gold-light:   #D4AE4E;
  --gold-pale:    #E8D8A0;
  --gold-dark:    #8A6E1A;
  --burgundy:     #5A1818;
  --burgundy-mid: #6E1F1F;
  --text:         #1E1A15;
  --text-mid:     #4A4036;
  --text-muted:   #7A6E60;
  --border:       #D4C8B0;
  --border-light: #EAE2D0;
  --nav-height:   72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  background-color: var(--cream-light);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  font-family: 'EB Garamond', serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.small-caps {
  font-variant: small-caps;
  letter-spacing: 0.08em;
}

p + p { margin-top: 1em; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.container--narrow {
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
}

section { padding: 5rem 0; }
section + section { border-top: 1px solid var(--border-light); }

/* ── Divider ──────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(184, 149, 42, 0.25);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo-est {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'EB Garamond', serif;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dark);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(184, 149, 42, 0.25);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    padding: 0.9rem 2rem;
    width: 100%;
    font-size: 0.8rem;
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Page offset for fixed nav ────────────────────────────── */
.page-body { padding-top: var(--nav-height); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background-color: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(90, 24, 24, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 149, 42, 0.06) 0%, transparent 50%);
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14, 12, 9, 0.55) 0%, rgba(14, 12, 9, 0.35) 40%, rgba(14, 12, 9, 0.7) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    );
  background-color: #1A1510;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
}

.hero-crest {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-crest-inner {
  transform: rotate(-45deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.75rem;
  font-family: 'EB Garamond', serif;
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: rgba(245, 240, 230, 0.8);
  max-width: 500px;
  margin: 0 auto;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, letter-spacing 0.25s;
  background: transparent;
}

.btn-gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  letter-spacing: 0.25em;
}

.btn-cream {
  color: var(--cream);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream);
  color: var(--charcoal);
  letter-spacing: 0.25em;
}

.btn-dark {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
  letter-spacing: 0.25em;
}

/* ── Image Placeholders ───────────────────────────────────── */
.img-placeholder {
  background: var(--charcoal-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(184, 149, 42, 0.04) 18px,
      rgba(184, 149, 42, 0.04) 36px
    );
}

.img-placeholder-label {
  font-family: 'EB Garamond', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 149, 42, 0.5);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.img-placeholder-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(184, 149, 42, 0.35);
  transform: rotate(45deg);
  margin: 0 auto 0.75rem;
}

.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-3-2 { aspect-ratio: 3/2; }
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-2-3 { aspect-ratio: 2/3; }

/* ── Home — Intro Section ─────────────────────────────────── */
.intro-section {
  background: var(--cream-light);
  text-align: center;
}

.intro-section .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 1.5rem auto 0;
  line-height: 1.9;
}

/* ── Home — Rooms Grid ────────────────────────────────────── */
.rooms-section { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 800px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

.room-card {
  display: flex;
  flex-direction: column;
}

.room-card-image {
  flex-shrink: 0;
}

.room-card-body {
  padding: 1.5rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
}

.room-card-status {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.room-card-status.occupied { color: var(--burgundy); }

.room-card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
  flex: 1;
  line-height: 1.7;
}

/* ── Home — Testimonials ──────────────────────────────────── */
.testimonials-section {
  background: var(--charcoal);
  text-align: center;
}

.testimonials-section .eyebrow { color: var(--gold); }
.testimonials-section h2 { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  text-align: left;
}

@media (max-width: 680px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.testimonial {
  border-left: 1px solid var(--gold);
  padding-left: 1.75rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-dark);
  line-height: 1.7;
}

.testimonial-attr {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Home — Brief Section ─────────────────────────────────── */
.brief-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 720px) {
  .brief-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .brief-section-img { order: -1; }
}

.brief-section-text .eyebrow { display: block; margin-bottom: 0.75rem; }
.brief-section-text h2 { margin-bottom: 1.25rem; }
.brief-section-text p { color: var(--text-mid); }
.brief-section-text .btn { margin-top: 2rem; }

/* ── Interior Page Hero ───────────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-hero .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.12em;
}

.page-hero-desc {
  margin-top: 1.25rem;
  font-style: italic;
  color: rgba(245, 240, 230, 0.6);
  font-size: 1.05rem;
}

/* ── Reservations Form ────────────────────────────────────── */
.reservations-section {
  background: var(--cream-light);
}

.form-notice {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--charcoal-mid);
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E60' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}

.form-success {
  display: none;
  margin-top: 2.5rem;
  border: 1px solid var(--gold);
  padding: 2rem;
  background: var(--cream);
  text-align: center;
}

.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-success-body {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ── History Page ─────────────────────────────────────────── */
.history-prose {
  background: var(--cream-light);
}

.era {
  margin-bottom: 3.5rem;
}

.era-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.era-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
}

.era-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.era p {
  color: var(--text-mid);
  max-width: 680px;
}

.notable-guests {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-top: 3rem;
}

.notable-guests h3 {
  margin-bottom: 1.5rem;
}

.notable-guest-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
}

.notable-guest-item:last-child { border-bottom: none; }

.guest-marker {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.guest-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Events Page ──────────────────────────────────────────── */
.events-featured {
  background: var(--charcoal);
  padding: 5rem 0;
}

.event-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 720px) {
  .event-main { grid-template-columns: 1fr; }
}

.event-main-meta .eyebrow { display: block; margin-bottom: 1rem; }
.event-main-meta h2 { color: var(--cream); margin-bottom: 1.25rem; }
.event-main-meta p { color: rgba(245, 240, 230, 0.65); font-size: 0.95rem; line-height: 1.85; }
.event-main-meta .btn { margin-top: 2rem; }

.events-calendar {
  background: var(--cream-light);
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-item {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
  transition: background 0.2s;
}

.event-item:last-child { border-bottom: none; }

.event-item:hover {
  background: var(--cream-dark);
  margin: 0 -2rem;
  padding: 2.25rem 2rem;
}

.event-date {
  text-align: center;
  padding-top: 0.2rem;
}

.event-date-month {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
}

.event-date-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.event-body h3 { margin-bottom: 0.5rem; }
.event-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.event-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.event-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
}

@media (max-width: 600px) {
  .event-item { grid-template-columns: 1fr; }
  .event-date { text-align: left; display: flex; align-items: baseline; gap: 0.5rem; }
}

/* ── Policies Page ────────────────────────────────────────── */
.policies-section { background: var(--cream-light); }

.policy-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
}

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

.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text);
  padding-top: 0.15rem;
}

.policy-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.5rem;
}

.policy-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.policy-body p + p { margin-top: 0.85em; }

.policy-highlight {
  background: var(--cream-dark);
  border-left: 3px solid var(--burgundy);
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
  font-style: italic;
  color: var(--text-mid);
}

@media (max-width: 680px) {
  .policy-block { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ── Press Page ───────────────────────────────────────────── */
.press-section { background: var(--cream-light); }

.press-intro {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 3.5rem;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.statement {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border-light);
  max-width: 720px;
}

.statement:last-child { border-bottom: none; }

.statement-date {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.statement h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.statement p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.statement p + p { margin-top: 0.85em; }

.statement-sig {
  margin-top: 1.75rem;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.75rem;
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
}

.contact-form-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  color: var(--cream-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184, 149, 42, 0.15);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-brand-est {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.footer-brand-desc {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.45);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'EB Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

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

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 240, 230, 0.3);
  letter-spacing: 0.05em;
}

.footer-legal {
  font-size: 0.7rem;
  color: rgba(245, 240, 230, 0.2);
  font-style: italic;
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
