/* ==========================================================================
   Hotel Comfort Court Dalhousie — stylesheet
   ========================================================================== */

/* Design tokens ------------------------------------------------------------ */
:root {
  --ink:        #0F172A;
  --ink-soft:   #2A3242;
  --gold:       #C8993C;
  --gold-deep:  #9C7628;
  --gold-soft:  #E8CE8A;
  --cream:      #FAF5E5;
  --mist:       #EFE7CE;
  --paper:      #FFFFFF;
  --muted:      #6B6355;
  --line:       #E4DCC1;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container:   1200px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --radius:      2px;

  --shadow-sm:   0 1px 2px rgba(15,23,42,.06), 0 2px 8px rgba(15,23,42,.04);
  --shadow-md:   0 4px 16px rgba(15,23,42,.08), 0 12px 40px rgba(15,23,42,.06);
}

/* Reset -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }

/* Utility classes ---------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
  display: inline-block;
}

/* Signature ornament — gold hairline with diamond */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin: 1.25rem auto 1.5rem;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 40px; background: currentColor;
}
.ornament svg { width: 10px; height: 10px; fill: currentColor; flex-shrink: 0; }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* Header ------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 1.25rem 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.is-transparent { background: transparent; }
.site-header.is-solid,
.site-header:not(.is-transparent) {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
}
.site-header.is-transparent.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(140%) blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.15;
}
.site-header.is-transparent:not(.scrolled) .brand { color: var(--paper); }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--gold); color: var(--paper);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-name { display: flex; flex-direction: column; }
.brand-name span:first-child { font-weight: 500; letter-spacing: 0.02em; }
.brand-name span:last-child {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}

.nav-list {
  display: flex; align-items: center; gap: 2.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: .5rem 0;
}
.site-header.is-transparent:not(.scrolled) .nav-list a { color: var(--paper); }
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-list a.active { color: var(--gold); }

.nav-cta { display: none; }
@media (min-width: 992px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid currentColor; border-radius: var(--radius);
  color: var(--ink);
  align-items: center; justify-content: center;
}
.site-header.is-transparent:not(.scrolled) .nav-toggle { color: var(--paper); }
.nav-toggle span {
  width: 18px; height: 2px; background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed; inset: 0; z-index: 60;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .4s ease;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { color: var(--paper); font-size: 1rem; }
  .site-header.is-transparent:not(.scrolled) .nav-list a { color: var(--paper); }
  .nav-close {
    position: fixed; top: 1.25rem; right: 1.5rem; z-index: 70;
    width: 44px; height: 44px; background: transparent; border: none;
    color: var(--paper); font-size: 2rem; line-height: 1; display: none;
  }
  .nav-list.open ~ .nav-close, .nav-list.open + .nav-close { display: block; }
}

/* Hero — home -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  z-index: 0;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.55) 0%, rgba(15,23,42,.35) 50%, rgba(15,23,42,.75) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; padding: 0 var(--gutter); }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: var(--paper); font-weight: 300; margin-bottom: 1.5rem; }
.hero-lede { font-size: 1.1rem; opacity: .9; max-width: 560px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--paper); opacity: .7;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 40px; background: var(--paper);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50%      { transform: scaleY(.4); opacity: 1; }
}

/* Hero slider ------------------------------------------------------------- */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slider::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,23,42,.55) 0%, rgba(15,23,42,.35) 50%, rgba(15,23,42,.75) 100%);
}
.hero-dots {
  position: absolute; left: 50%; bottom: 5.5rem; transform: translateX(-50%);
  z-index: 2;
  display: flex; gap: .6rem;
}
.hero-dots button {
  width: 32px; height: 2px; padding: 0;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: background .3s ease;
}
.hero-dots button.is-active { background: var(--gold); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px;
  background: rgba(15,23,42,.25); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--paper); border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.hero-arrow:hover { background: rgba(15,23,42,.55); }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }
@media (min-width: 768px) { .hero-arrow { display: inline-flex; } }

/* Floating action buttons ------------------------------------------------- */
.floating-actions {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 45;
  display: flex; flex-direction: column; gap: .75rem;
}
.fab {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--paper); text-decoration: none;
  box-shadow: 0 4px 16px rgba(15,23,42,.2), 0 2px 6px rgba(15,23,42,.15);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(15,23,42,.28), 0 2px 6px rgba(15,23,42,.15);
  color: var(--paper);
}
.fab svg { width: 24px; height: 24px; }
.fab-call { background: var(--gold); }
.fab-call:hover { background: var(--gold-deep); }
.fab-wa { background: #25D366; }
.fab-wa:hover { background: #1FB255; }
.fab-tooltip {
  position: absolute; right: calc(100% + .75rem); top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--paper);
  font-family: var(--font-body); font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; white-space: nowrap;
  padding: .5rem .85rem; border-radius: 3px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.fab-tooltip::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--ink);
}
.fab:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(-3px); }
@media (max-width: 600px) { .fab-tooltip { display: none; } }

/* Ensure floating actions clear the back-to-top button on the same edge */
.to-top { right: calc(1.25rem + 54px + .75rem); bottom: 1.25rem; }
@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 22px; height: 22px; }
  .to-top { right: calc(1.25rem + 48px + .5rem); }
  .floating-actions { gap: .5rem; }
}

/* Map --------------------------------------------------------------------- */
.map-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--mist);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .map-wrap { aspect-ratio: 4/3; } }

/* Page hero — inner pages -------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(15,23,42,.6), rgba(15,23,42,.7));
}
.page-hero-inner { position: relative; z-index: 1; padding: 4rem var(--gutter); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { color: var(--paper); font-weight: 300; }
.page-hero p { max-width: 620px; margin: 0 auto 2rem; opacity: .9; font-size: 1.05rem; }

/* Section headings --------------------------------------------------------- */
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }

/* Intro block — text left, image right ------------------------------------- */
.intro-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
.intro-copy p { color: var(--muted); font-size: 1.05rem; }
.intro-figure {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--mist);
  overflow: hidden;
}
.intro-figure img { width: 100%; height: 100%; object-fit: cover; }
.intro-figure::before {
  content: ""; position: absolute; inset: 1rem; border: 1px solid var(--gold);
  transform: translate(1.5rem, 1.5rem);
  z-index: -1;
}

/* Room cards --------------------------------------------------------------- */
.rooms-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.room-media { aspect-ratio: 4/3; overflow: hidden; background: var(--mist); }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-media img { transform: scale(1.04); }
.room-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.room-meta {
  display: flex; gap: 1.5rem;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.room-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.room-title { font-size: 1.4rem; margin: 0 0 .75rem; }
.room-desc { color: var(--muted); font-size: 0.96rem; flex: 1; }
.room-link {
  margin-top: 1.25rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .5rem;
}
.room-link:hover { color: var(--ink); }
.room-link::after { content: "→"; transition: transform .2s ease; }
.room-link:hover::after { transform: translateX(4px); }

/* Amenity cards ------------------------------------------------------------ */
.amenities-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.amenity-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid transparent;
  text-align: center;
  transition: all .3s ease;
}
.amenity-card:hover { border-color: var(--gold); background: var(--paper); }
.amenity-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
  background: var(--paper); color: var(--gold);
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
}
.amenity-card:hover .amenity-icon { background: var(--gold); color: var(--paper); }
.amenity-icon svg { width: 28px; height: 28px; }
.amenity-title { font-size: 1.15rem; margin: 0 0 .75rem; }
.amenity-desc { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Testimonial ------------------------------------------------------------- */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 3rem;
}
.testimonial {
  background: var(--paper);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--gold-soft);
}
.testimonial-stars {
  color: var(--gold); letter-spacing: .15em; margin-bottom: 1rem; font-size: 0.9rem;
}
.testimonial-text {
  font-family: var(--font-display); font-size: 1.05rem; line-height: 1.6;
  color: var(--ink-soft); margin: 0 0 1.5rem;
}
.testimonial-author {
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

/* CTA band ----------------------------------------------------------------- */
.cta-band {
  background: var(--ink); color: var(--paper);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  text-align: center;
}
.cta-band h2 { color: var(--paper); font-weight: 300; }
.cta-band p { opacity: .85; max-width: 560px; margin: 0 auto 2rem; }
.cta-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: 1rem;
}
.cta-phone-label {
  display: block;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: .35rem;
}

/* Gallery ------------------------------------------------------------------ */
.gallery-index {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gallery-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,23,42,.85));
}
.gallery-tile-label {
  position: absolute; left: 1.5rem; bottom: 1.25rem; z-index: 1;
  color: var(--paper);
  font-family: var(--font-display); font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.gallery-tile-label::after {
  content: "→"; display: inline-block; margin-left: .5rem;
  transition: transform .3s ease;
}
.gallery-tile:hover .gallery-tile-label::after { transform: translateX(6px); }

/* Photo grid --------------------------------------------------------------- */
.photo-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.photo-grid figure {
  margin: 0; overflow: hidden; background: var(--mist);
  aspect-ratio: 4/3; cursor: zoom-in;
}
.photo-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.photo-grid figure:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,23,42,.95);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 90vh; object-fit: contain;
  box-shadow: var(--shadow-md);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: var(--paper); font-size: 1.5rem; line-height: 1;
  border-radius: 50%;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: var(--paper); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.25rem;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Sightseeing ------------------------------------------------------------- */
.sights-list { display: flex; flex-direction: column; gap: 4rem; }
.sight {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .sight { grid-template-columns: 1fr 1fr; }
  .sight.reverse .sight-media { order: 2; }
}
.sight-media { aspect-ratio: 4/3; overflow: hidden; background: var(--mist); }
.sight-media img { width: 100%; height: 100%; object-fit: cover; }
.sight-body .eyebrow { color: var(--gold-deep); }
.sight-title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.sight-body p { color: var(--muted); }

/* Contact ------------------------------------------------------------------ */
.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--cream); color: var(--gold-deep);
  border-radius: 50%;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin: 0 0 .35rem;
}
.contact-value { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin: 0; }
.contact-value a { color: inherit; }
.contact-value a:hover { color: var(--gold-deep); }

.contact-form { background: var(--cream); padding: 2.5rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two-col { grid-template-columns: 1fr; } }
.form-field label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); font-weight: 600; margin-bottom: .5rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit; font-size: 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--gold);
}

/* Footer ------------------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: var(--paper); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 0.95rem; margin-top: 1rem; }
.footer-heading {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.25rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .75rem; }
.footer-list a, .footer-contact a { color: rgba(255,255,255,.7); font-size: 0.92rem; }
.footer-list a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; font-size: 0.92rem; color: rgba(255,255,255,.7); }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: var(--gold); }

/* Back to top -------------------------------------------------------------- */
.to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 40;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--paper);
  border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.to-top:hover { transform: translateY(-3px); background: var(--gold-deep); }
.to-top.visible { display: flex; }
.to-top svg { width: 18px; height: 18px; }

/* Reveal on scroll --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
