/* ===== Custom Properties ===== */
:root {
  --color-bg: #faf8f4;
  --color-bg-alt: #f1ece2;
  --color-charcoal: #23262b;
  --color-charcoal-soft: #565a60;
  --color-navy: #1d3557;
  --color-navy-dark: #12233b;
  --color-gold: #8a6a3a;
  --color-gold-light: #d9b877;
  --color-border: #e3ddd0;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1160px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-navy); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 700; color: #fff; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; margin-bottom: 0.4em; }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.9rem;
}
.eyebrow.center { text-align: center; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: var(--color-navy);
  text-decoration: none;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  z-index: 500;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
}
.logo:hover { text-decoration: none; color: var(--color-navy); }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.primary-nav a {
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.primary-nav a:hover { color: var(--color-navy); text-decoration: none; }
.nav-phone {
  font-weight: 700 !important;
  color: var(--color-navy) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 35, 59, 0.72) 0%, rgba(18, 35, 59, 0.82) 60%, rgba(18, 35, 59, 0.92) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}
.hero .eyebrow {
  color: var(--color-gold-light);
}
.hero-subhead {
  font-size: 1.2rem;
  color: #f1ece2;
  max-width: 600px;
  margin: 0 auto 2.4rem;
}
.hero-ctas {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Intro ===== */
.intro {
  padding: 6rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.intro-heading { text-align: left; }
.intro-copy p {
  color: var(--color-charcoal-soft);
  font-size: 1.08rem;
}
.intro-image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 50px -20px rgba(18, 35, 59, 0.35);
}

/* ===== Services ===== */
.services {
  padding: 5rem 0 6rem;
  background: var(--color-bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}
.service-card {
  background: var(--color-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-body {
  padding: 1.8rem 1.8rem 2rem;
  border-top: 3px solid var(--color-navy);
  flex: 1;
}
.service-body h3 { color: var(--color-navy); }
.service-body p { color: var(--color-charcoal-soft); margin-bottom: 0; }

/* ===== Testimonials ===== */
.testimonials {
  padding: 6rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  margin: 0;
  padding: 2.2rem 1.9rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-gold);
  font-style: italic;
  color: var(--color-charcoal-soft);
}
.testimonial p { margin-bottom: 1rem; }
.testimonial footer {
  font-style: normal;
  font-weight: 600;
  color: var(--color-charcoal);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.testimonial-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-charcoal-soft);
  margin: 2.2rem 0 0;
  opacity: 0.75;
}

/* ===== Contact ===== */
.contact {
  padding: 6rem 0 7rem;
  background: var(--color-navy);
  color: #f1ece2;
}
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--color-gold-light); }
.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: #d8e0ea;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.9rem;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  min-width: 70px;
}
.contact-line a, .contact-line span:last-child { color: #fff; }
.contact-line a:hover { color: var(--color-gold-light); }

.mailing-list {
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}
.mailing-list h3 { margin-bottom: 0.5rem; color: #fff; }
.mailing-list p { color: #d8e0ea; }
.signup-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.signup-form input {
  flex: 1;
  min-width: 180px;
}

.booking-form {
  background: var(--color-bg);
  padding: 2.4rem;
  border-radius: 4px;
}
.form-row {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
}
.form-row label {
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal-soft);
}
input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-charcoal);
  border-radius: 2px;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-navy);
}
.booking-form .form-note {
  font-size: 0.8rem;
  color: var(--color-charcoal-soft);
  margin-top: 0.9rem;
  margin-bottom: 0;
}

/* ===== Footer ===== */
.site-footer {
  padding: 2.5rem 0;
  text-align: center;
  background: var(--color-navy-dark);
  color: #b7c2cf;
  font-size: 0.88rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.site-footer a { color: #b7c2cf; text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro-image { order: -1; }
  .intro-heading, .intro-copy .eyebrow, .intro-copy p { text-align: center; }
}

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

@media (max-width: 700px) {
  .menu-toggle { display: flex; }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
  }
  .primary-nav.open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
  }
  .header-inner { position: relative; }

  .hero { min-height: 100vh; }
}
