:root {
  --navy: #14477e;
  --navy-dark: #0d2f57;
  --taupe: #b29f81;
  --taupe-light: #e4dac9;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #6f6a63;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-dark);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 15px 36px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { background: var(--navy); color: var(--white); }

.btn-solid {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-solid:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-light {
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--navy-dark); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.brand img {
  height: 46px;
  width: auto;
  transition: height 0.35s ease;
}
.site-header.scrolled .brand img { height: 38px; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled .nav-links a { color: var(--navy-dark); }
.nav-links a:hover { border-color: currentColor; }

.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-cta .btn {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  padding: 10px 22px;
}
.site-header.scrolled .nav-cta .btn {
  border-color: var(--navy);
  color: var(--navy);
}
.nav-cta .btn:hover { background: var(--white); color: var(--navy-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s ease;
}
.site-header.scrolled .menu-toggle span { background: var(--navy-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: 30% center;
  filter: grayscale(15%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,47,87,0.55) 0%, rgba(13,47,87,0.72) 55%, rgba(13,47,87,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 760px;
}
.hero-content .eyebrow {
  color: var(--taupe-light);
  display: block;
  margin-bottom: 22px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 13vw, 6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
}
.hero-content h1 span { color: var(--taupe); }
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  margin: 24px 0 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.6);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section shared */
section { padding: 110px 0; }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 2.8rem); }
.section-head p {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 1.02rem;
}
.divider {
  width: 46px;
  height: 1px;
  background: var(--taupe);
  margin: 22px auto 0;
}

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: 40% 15%;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.55);
  z-index: 1;
}
.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.6rem); margin-bottom: 22px; }
.about-copy p { color: var(--text-light); margin-bottom: 18px; }
.about-stats {
  display: flex;
  gap: 46px;
  margin-top: 36px;
}
.about-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--navy);
}
.about-stats div span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Services */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(20,71,126,0.12);
  border: 1px solid rgba(20,71,126,0.12);
}
.service-card {
  background: var(--white);
  padding: 46px 36px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover { background: var(--navy-dark); transform: translateY(-2px); }
.service-card .num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.5rem;
  margin: 16px 0 12px;
  transition: color 0.3s ease;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.94rem;
  transition: color 0.3s ease;
}
.service-card:hover h3,
.service-card:hover p { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.75); }

/* Why us */
.why { background: var(--navy-dark); color: var(--white); }
.why .section-head h2 { color: var(--white); }
.why .section-head p { color: rgba(255,255,255,0.72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.why-item svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 20px;
  stroke: var(--taupe);
}
.why-item h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.why-item p {
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
}

/* Testimonials */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.testi-card {
  padding: 8px;
}
.testi-card .stars { color: var(--taupe); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.testi-card p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.testi-card cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Location */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 20px 60px rgba(13,47,87,0.1);
}
.location-info {
  background: var(--navy);
  color: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 { color: var(--white); font-size: 2.3rem; margin-bottom: 20px; }
.location-info p { color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.location-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.location-detail svg { width: 20px; height: 20px; stroke: var(--taupe); flex-shrink: 0; margin-top: 3px; }
.location-detail strong { display: block; font-size: 0.92rem; letter-spacing: 0.05em; }
.location-detail span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.location-actions { margin-top: 20px; display: flex; gap: 16px; flex-wrap: wrap; }
.map-embed { min-height: 420px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(35%) contrast(1.05); }

/* CTA banner */
.cta-banner {
  background: var(--taupe);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 10px; color: var(--navy-dark); }
.cta-banner p { color: var(--navy-dark); opacity: 0.85; margin-bottom: 26px; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 42px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.footer-social a:hover { background: var(--taupe); border-color: var(--taupe); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--white); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; gap: 34px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .site-header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 22px 28px;
    gap: 18px;
  }
  .site-header.nav-open .nav-links a { color: var(--navy-dark); }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 76px 0; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.5rem; letter-spacing: 0.05em; }
  .hero-content p { font-size: 1.1rem; }
}
