/* ============================================================
   THE GROOM SUITE — style.css
   Brand: #0d0d0d (bg) | #C9A96E (gold) | #FDF8F2 (cream)
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

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

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

body {
  background-color: #0d0d0d;
  color: #FDF8F2;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C9A96E 30%, #C9A96E 70%, transparent 100%);
  opacity: 0.4;
  margin: 0;
}

.divider--footer {
  opacity: 0.2;
}

/* ---------- Gold text / link ---------- */
.gold-link {
  color: #C9A96E;
  transition: color 0.2s ease;
}
.gold-link:hover {
  color: #e8c98a;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #C9A96E 0%, #b8934f 60%, #C9A96E 100%);
  background-size: 200% 200%;
  color: #0d0d0d;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background-position: right center;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.35);
  color: #0d0d0d;
}

.btn-outline {
  background: transparent;
  color: #FDF8F2;
  border: 1.5px solid rgba(253, 248, 242, 0.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: #C9A96E;
  color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

/* ---------- Section Shared ---------- */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 0.75rem;
}

.section-title {
  color: #FDF8F2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(253, 248, 242, 0.65);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: box-shadow 0.3s ease;
}

.nav-header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.9rem;
  color: rgba(253, 248, 242, 0.8);
  border-radius: 2px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #C9A96E;
}

.nav-cta-link {
  background: linear-gradient(135deg, #C9A96E 0%, #b8934f 100%);
  color: #0d0d0d !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-cta-link:hover {
  opacity: 0.9;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
  color: #0d0d0d !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FDF8F2;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    color: rgba(253, 248, 242, 0.85);
  }

  .nav-cta-link {
    margin: 0.75rem 0 0;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 3px;
    border-bottom: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #0a0a0a;
  padding: 4rem 1.5rem 0;
}

.hero-logo-corner {
  position: absolute;
  top: 6rem;
  left: 2rem;
  width: 169px;
  height: auto;
  z-index: 10;
}

.hero-content {
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.hero-van {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 2.5rem auto 0;
  opacity: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.25rem;
}

.hero-headline {
  color: #FDF8F2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-headline br {
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(253, 248, 242, 0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.04);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  line-height: 1;
}

.service-name {
  color: #C9A96E;
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
}

.service-desc {
  color: rgba(253, 248, 242, 0.7);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.services-note {
  margin-top: 2.75rem;
  text-align: center;
  color: rgba(253, 248, 242, 0.55);
  font-size: 0.9rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.note-icon {
  color: #C9A96E;
  font-style: normal;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: rgba(201, 169, 110, 0.03);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-title {
  color: #C9A96E;
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
}

.step-desc {
  color: rgba(253, 248, 242, 0.7);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
  opacity: 0.4;
  margin-top: 2.5rem;
  flex-shrink: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, #C9A96E, transparent);
  }
}

/* ============================================================
   WHY THE GROOM SUITE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.75rem;
  border-left: 2px solid rgba(201, 169, 110, 0.25);
  transition: border-color 0.25s ease;
}

.why-card:hover {
  border-color: #C9A96E;
}

.why-icon {
  margin-bottom: 1.1rem;
}

.why-title {
  color: #FDF8F2;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.why-desc {
  color: rgba(253, 248, 242, 0.65);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  background: rgba(201, 169, 110, 0.025);
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.area-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.25rem;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.area-list li {
  color: rgba(253, 248, 242, 0.8);
  font-size: 1rem;
  padding-left: 1.25rem;
  position: relative;
}

.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A96E;
}

.zip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.zip-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #C9A96E;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35em 0.85em;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.zip-badge:hover {
  background: rgba(201, 169, 110, 0.2);
}

.area-note {
  text-align: center;
  color: rgba(253, 248, 242, 0.55);
  font-size: 0.9375rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
}

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

/* ============================================================
   BOOK / CONTACT
   ============================================================ */
.book-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.book-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-icon {
  font-size: 1.25rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.4);
  margin-bottom: 0.2rem;
}

.contact-value {
  color: rgba(253, 248, 242, 0.85);
  font-size: 0.9375rem;
}

.book-online-btn {
  margin-top: 0.75rem;
  text-align: center;
  width: 100%;
}

/* Form */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(253, 248, 242, 0.7);
  letter-spacing: 0.02em;
}

.required {
  color: #C9A96E;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #FDF8F2;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(253, 248, 242, 0.25);
}

.form-input:focus {
  border-color: #C9A96E;
  background: rgba(201, 169, 110, 0.05);
}

/* datetime-local fix */
.form-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(3deg);
  cursor: pointer;
}

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

.form-submit {
  align-self: flex-start;
  min-width: 200px;
}

@media (max-width: 900px) {
  .book-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .book-contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .contact-item {
    flex: 1 1 200px;
  }
  .book-online-btn {
    flex: 1 1 100%;
  }
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.footer-tagline {
  color: rgba(253, 248, 242, 0.45);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1.1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  display: block;
  color: rgba(253, 248, 242, 0.65);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #C9A96E;
}

.footer-address {
  color: rgba(253, 248, 242, 0.45);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  color: rgba(253, 248, 242, 0.3);
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal-link {
  color: rgba(253, 248, 242, 0.3);
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}
.footer-legal-link:hover {
  color: #C9A96E;
}

.footer-legal-sep {
  color: rgba(253, 248, 242, 0.2);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   FOCUS VISIBLE — Accessibility
   ============================================================ */
:focus-visible {
  outline: 2px solid #C9A96E;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Service Area Map ---------- */
.map-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-top: 1rem;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}


/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-credit {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(230,228,224,0.4);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- Services Gallery Strip ---------- */
.services-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.sg-item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: 0 3px 12px rgba(0,0,0,0.35);
  aspect-ratio: 3/2;
}

.sg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sg-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .services-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Leaflet Service Map ---------- */
#service-map {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  filter: contrast(1.05);
}

.map-tooltip {
  background: rgba(10,9,7,0.85);
  color: #C9A96E;
  border: 1px solid #C9A96E;
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.leaflet-attribution-flag { display: none !important; }

/* ---------- Photo Strip (compact, between service-area and book) ---------- */
.photo-strip {
  display: flex;
  height: 130px;
  overflow: hidden;
  gap: 3px;
}

.ps-item {
  margin: 0;
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.ps-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ps-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 480px) {
  .photo-strip {
    height: 90px;
  }
}
