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

/* ─── PALETTE ────────────────────────────────────────────── */
:root {
  --navy:      #1A2E44;
  --teal:      #2A7F6F;
  --teal-dark: #1A5C50;
  --steel:     #4A8FA8;
  --fog:       #F4F6F8;
  --body-text: #4A6380;
  --muted:     #7A95AE;
  --border:    #D8E3EC;
  --white:     #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  line-height: 1.75;
  background: var(--white);
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; }
h3 { font-size: 1.35rem; line-height: 1.35; }

p { max-width: 680px; }
p + p { margin-top: 1rem; }

a {
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--teal); }

strong { font-weight: 600; color: var(--navy); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 88px 2rem;
}

.section-fog  { background: var(--fog); }
.section-navy { background: var(--navy); }

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy p,
.section-navy li,
.section-navy a {
  color: var(--white);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26, 46, 68, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-logo-text {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-links a:hover,
.nav-links a.active {
  color: #9ECFDA;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 110px 2rem 100px;
  background: var(--white);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero .subheadline {
  font-size: 1.15rem;
  color: var(--body-text);
  margin-bottom: 2.25rem;
  max-width: 620px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white) !important;
  border: 2px solid var(--teal);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--teal) !important;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white) !important;
}

/* ─── ABOUT LAYOUT ───────────────────────────────────────── */
.about-layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-photo {
  flex-shrink: 0;
  width: 280px;
  max-width: 280px;
  overflow: hidden;
}

.about-photo img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 24px rgba(26, 46, 68, 0.10);
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .about-photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}


/* ─── SECTION INTROS ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}

.section-intro h2 { margin-bottom: 1rem; }

/* ─── SERVICE CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(26, 46, 68, 0.08);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p { margin-bottom: 1rem; }

.good-for {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.good-for strong {
  color: var(--teal);
  font-weight: 600;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
  margin-top: 0.5rem;
}

details.faq-item {
  border-bottom: 1px solid var(--border);
}

details.faq-item:first-child {
  border-top: 1px solid var(--border);
}

details.faq-item summary {
  padding: 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

details.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--body-text);
}

/* ─── BLOCKQUOTE ─────────────────────────────────────────── */
blockquote {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-email-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
  margin: 0.5rem 0 2rem;
}

.contact-email-link:hover { color: var(--teal-dark); }

.contact-form { max-width: 580px; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #C5D4E0;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 10px 14px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 127, 111, 0.15);
}

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

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 48px 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-brand .tagline {
  color: #AABCCE;
  font-size: 0.85rem;
  max-width: none;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-links a {
  color: #AABCCE;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

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

.footer-bottom p,
.footer-bottom a {
  color: #AABCCE;
  font-size: 0.825rem;
  max-width: none;
}

.footer-bottom a:hover { color: var(--white); }

/* ─── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  text-align: center;
}

.cta-strip h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-strip p {
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 64px 1.5rem; }
  .hero { padding: 72px 1.5rem 64px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

  .services-grid { grid-template-columns: 1fr; }

  .btn { display: block; text-align: center; }

  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
