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

:root {
  --crystalline: #b5c4b1;
  --glace-bay: #7fa3b7;
  --picture-perfect: #9dd3d8;
  --early-frost: #d4d8d4;
  --quartz-stone: #cde8df;
  --deep-teal: #2c5f6a;
  --text-dark: #2a3530;
  --text-mid: #4a5c55;
  --text-light: #7a8c85;
  --white: #fafdfb;
  --cream: #f5f8f4;
}

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,253,251,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,196,177,0.3);
  height: 160px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: clamp(100px, 12vw, 160px);
  width: auto;
}

.nav-logo {
  width: 44px; height: 44px;
  background: var(--crystalline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--text-dark); letter-spacing: 0.3px;
  line-height: 1.2;
}
.nav-name small {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 0.65rem; font-weight: 400; letter-spacing: 1.5px;
  color: var(--text-light); text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--deep-teal); }
.nav-links a.active { color: var(--deep-teal); border-bottom: 1.5px solid var(--deep-teal); padding-bottom: 2px; }

.nav-cta {
  background: var(--deep-teal); color: white !important;
  padding: 0.5rem 1.2rem; border-radius: 40px;
  font-size: 0.73rem !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--glace-bay) !important; }

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.nav-mobile {
  display: none;
  position: fixed; top: 160px; left: 0; right: 0; bottom: 0;
  background: rgba(250,253,251,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 2.5rem;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--early-frost);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--deep-teal); }
.nav-mobile .nav-cta-mobile {
  margin-top: 1.5rem;
  background: var(--deep-teal); color: white !important;
  padding: 0.9rem 1.5rem; border-radius: 40px;
  text-align: center; border-bottom: none;
}

/* ─── PAGE WRAPPER ─── */
.page { padding-top: 160px; }

/* ─── HERO ─── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 160px);
  background: var(--cream);
}

.hero-text-only {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, var(--deep-teal) 0%, #1e4a54 100%);
  min-height: 60vh;
  display: flex;
  justify-content: center;
}
.hero-text-only .hero-left {
  width: 100%;
  max-width: 1400px;
  padding: 7rem 5rem;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem;
}

.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--picture-perfect); margin-bottom: 1.5rem;
}

.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300; line-height: 1.15;
  color: white; margin-bottom: 1.5rem;
}
.hero-left h1 em { font-style: italic; color: var(--picture-perfect); }

.hero-left p {
  font-size: 1rem; color: rgba(255,255,255,0.8);
  max-width: 38ch; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; background: var(--deep-teal); color: white;
  padding: 0.85rem 2rem; border-radius: 40px; text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #234f58; transform: translateY(-1px); }

.btn-outline {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.4);
  color: white; padding: 0.85rem 2rem; border-radius: 40px;
  text-decoration: none; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: white; color: white; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #1a3d45; color: white;
  display: flex; justify-content: center; gap: 2.5rem;
  padding: 1.5rem 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; letter-spacing: 0.5px;
}
.trust-icon { font-size: 1.1rem; opacity: 0.8; }

/* ─── SECTIONS ─── */
.section { padding: 6rem 5rem; }
.section-alt { background: var(--cream); }
.section-center { text-align: center; }

.section-label {
  display: block; font-size: 0.68rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--glace-bay);
  margin-bottom: 1rem;
}
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section h2 em { font-style: italic; color: var(--deep-teal); }

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 4rem; align-items: start;
  background: var(--cream);
}
.about-photo-frame {
  position: relative;
  max-width: 380px; margin: 0 auto;
}
.about-photo-frame::before { display: none; }
.about-photo {
  width: 100%; height: auto;
  object-fit: cover; border-radius: 12px; display: block;
  box-shadow: 0 12px 40px rgba(44,95,106,0.15);
}
.about-content { padding-top: 1rem; }
.about-content p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1rem; }
.credentials {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--early-frost);
}
.credential-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1rem;
}
.credential-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--glace-bay); margin-top: 8px; flex-shrink: 0;
}
.credential-item p { margin: 0; font-size: 0.9rem; color: var(--text-mid); }

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: white; border: 1px solid var(--early-frost);
  border-radius: 8px; padding: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--glace-bay);
  transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: var(--crystalline); box-shadow: 0 8px 32px rgba(44,95,106,0.08); }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--early-frost);
  line-height: 1; margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ─── GETTING STARTED ─── */
.steps-row { display: flex; gap: 0; margin-top: 3rem; }
.step { flex: 1; padding: 2.5rem 2rem; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 3rem; right: 0;
  width: 1px; height: 40px; background: var(--crystalline);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--quartz-stone);
  line-height: 1; margin-bottom: 1rem;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: var(--text-mid); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.25rem; color: var(--text-mid); font-size: 0.95rem;
}
.contact-detail a { color: var(--deep-teal); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light);
}
.form-group input, .form-group textarea, .form-group select {
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 300;
  color: var(--text-dark); background: var(--cream);
  border: 1px solid var(--early-frost); border-radius: 6px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--glace-bay);
  box-shadow: 0 0 0 3px rgba(127,163,183,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── PAGE HEADERS ─── */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(205,232,223,0.3) 100%);
  padding: 5rem 5rem 4rem;
  border-bottom: 1px solid var(--early-frost);
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 300;
  color: var(--text-dark); margin-bottom: 1rem;
}
.page-header p { color: var(--text-mid); max-width: 50ch; }

/* ─── RESOURCES ─── */
.resources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.resource-card {
  background: white; border: 1px solid var(--early-frost);
  border-radius: 8px; padding: 2rem;
  transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: 0 4px 24px rgba(44,95,106,0.08); }
.resource-tag {
  display: inline-block; background: var(--quartz-stone);
  color: var(--deep-teal); font-size: 0.68rem; letter-spacing: 1px;
  text-transform: uppercase; padding: 0.25rem 0.75rem;
  border-radius: 20px; margin-bottom: 1rem;
}
.resource-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.resource-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.6);
  padding: 3rem 5rem; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 1rem;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: white; font-weight: 400;
}

/* ─── ULTRAWIDE / LARGE DESKTOP ─── */
@media (min-width: 1400px) {
  .section { padding: 7rem max(5rem, calc((100vw - 1400px) / 2 + 5rem)); }
  .page-header { padding: 6rem max(5rem, calc((100vw - 1400px) / 2 + 5rem)) 5rem; }
  footer { padding: 3rem max(5rem, calc((100vw - 1400px) / 2 + 5rem)); }
}

/* ─── RESPONSIVE: Large tablets ─── */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 2rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.8px; }
  .nav-cta { padding: 0.45rem 1rem; }
}

/* ─── RESPONSIVE: Tablet / Mobile ─── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 1.5rem; }

  nav { height: 130px; }
  .page { padding-top: 130px; }
  .nav-mobile { top: 130px; }
  .nav-logo-img { height: clamp(100px, 11vw, 130px); }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 2rem; }
  .hero-text-only .hero-left { padding: 3.5rem 2rem; }

  .trust-bar { gap: 1.25rem; padding: 1.25rem 1.5rem; flex-wrap: wrap; }
  .trust-item { font-size: 0.72rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-frame { max-width: 280px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step:not(:last-child)::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .resources-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 4rem 2rem; }
  .page-header { padding: 3rem 2rem 2.5rem; }
  footer { padding: 2rem; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* ─── RESPONSIVE: Mobile ─── */
@media (max-width: 520px) {
  nav { height: 110px; }
  .page { padding-top: 110px; }
  .nav-mobile { top: 110px; }
  .nav-logo-img { height: 100px; }

  .resources-grid { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .section { padding: 3rem 1.25rem; }
  .page-header { padding: 2.5rem 1.25rem 2rem; }
  footer { padding: 1.75rem 1.25rem; }
}