
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 :root {
  --sand: #f5f0e8;
  --ocean: #3d6b7d;
  --ocean-dark: #2a4d5c;
  --ocean-light: #a8ccd8;
  --driftwood: #8c7b6a;
  --ink: #2c2825;
  --white: #fdfcfa;
  --stone: #e8dfd0;
}
 body {
 font-family: 'DM Sans', sans-serif;
 background-color: var(--white);
 color: var(--ink);
 font-size: 16px;
 line-height: 1.6;
 }
 /* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: none !important;
  padding: 10px 40px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
 .nav-brand {
 font-family: 'Cormorant Garamond', serif;
 font-size: 3.4rem;
 font-weight: 700;
 color: var(--ocean-dark);
 letter-spacing: 0.01em;
 line-height: 1;
 }
 .nav-brand span {
 color: var(--ocean);
 font-weight: 400;
 font-style: italic;
 }
nav a {
  text-decoration: none;
  color: var(--ocean);
  font-size: 1rem !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: color 0.2s;
}
 nav a:hover { color: var(--ocean-dark); }
 .nav-links { display: flex; gap: 32px; align-items: center; }
 .nav-cta {
 background: var(--ocean);
 color: var(--white) !important;
 padding: 9px 22px;
 border-radius: 4px;
 transition: background 0.2s !important;
 }
 .nav-cta:hover { background: var(--ocean-dark) !important; color: var(--white) !important; }
 .nav-tagline {
 font-family: 'Cormorant Garamond', serif;
 font-size: 2rem;
 font-style: italic;
 font-weight: 700;
 letter-spacing: 0.04em;
 text-transform: none;
 color: var(--ocean);
 margin-top: 2px;
 }
 .nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
}
 /* ── HERO ── */
 .hero {
 display: grid;
 grid-template-columns: 1fr 1fr;
 min-height: 88vh;
 }
 .hero-text {
 padding: 80px 60px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 background: var(--white);
 }
 .hero-eyebrow {
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--ocean);
 margin-bottom: 20px;
 }
 .hero-heading {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(2.4rem, 4vw, 3.4rem);
 font-weight: 600;
 line-height: 1.15;
 color: var(--ink);
 margin-bottom: 24px;
 }
 .hero-heading em {
 font-style: italic;
 color: var(--ocean);
 }
 .hero-sub {
 font-size: 1rem;
 color: #5a5047;
 line-height: 1.7;
 max-width: 480px;
 margin-bottom: 40px;
 }
 .hero-actions {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
 }
 .btn-primary {
 background: var(--ocean);
 color: var(--white);
 padding: 14px 32px;
 border-radius: 4px;
 text-decoration: none;
 font-weight: 500;
 font-size: 0.9rem;
 letter-spacing: 0.02em;
 transition: background 0.2s;
 display: inline-block;
 }
 .btn-primary:hover { background: var(--ocean-dark); }
 .btn-secondary {
 color: var(--ocean);
 padding: 14px 0;
 text-decoration: none;
 font-weight: 500;
 font-size: 0.9rem;
 border-bottom: 1.5px solid var(--ocean-light);
 transition: color 0.2s, border-color 0.2s;
 }
 .btn-secondary:hover { color: var(--ocean-dark); border-color: var(--ocean-dark); }
 .hero-image {
 position: relative;
 overflow: hidden;
 }
 .hero-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 display: block;
 }
 .hero-image-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(61,107,125,0.15) 0%, transparent 60%);
 }
 /* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
  margin-top: 24px;
  background: var(--white);
}
 .photo-strip-item {
 position: relative;
 overflow: hidden;
 }
 .photo-strip-item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
 }
 .photo-strip-item:hover img { transform: scale(1.04); }
 .photo-strip-label {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 background: linear-gradient(to top, rgba(42,77,92,0.85), transparent);
 color: white;
 padding: 32px 20px 16px;
 font-size: 0.85rem;
 font-weight: 500;
 letter-spacing: 0.03em;
 }
 /* ── SECTION WRAPPERS ── */
 .section { padding: 80px 40px; }
 .section-narrow { max-width: 860px; margin: 0 auto; }
 .section-wide { max-width: 1100px; margin: 0 auto; }
 .section-label {
 font-size: 0.72rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--ocean);
 font-weight: 500;
 margin-bottom: 12px;
 }
 .section-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(1.8rem, 3vw, 2.6rem);
 font-weight: 600;
 color: var(--ink);
 line-height: 1.2;
 margin-bottom: 20px;
 }
 .section-body {
 font-size: 1rem;
 color: #5a5047;
 line-height: 1.75;
 max-width: 640px;
 }
 /* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--ocean-light);
  border: 2px solid var(--ocean-light);
}
 .service-card {
 background: var(--white);
 padding: 28px 32px;
 transition: background 0.2s;
 }
 .service-card:hover { background: var(--sand); }
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--ocean); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
 .service-name {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.5rem;
 font-weight: 600;
 color: var(--ink);
 margin-bottom: 10px;
 line-height: 1.3;
 }
 .service-desc {
 font-size: 0.9rem;
 color: #6b5f54;
 line-height: 1.65;
 }
 #services {
  scroll-margin-top: 80px;
}
 /* ── APPROACH ── */
 .approach-bg { background: var(--ocean-dark); color: white; }
 .approach-bg .section-label { color: #a8ccd8; }
 .approach-bg .section-title { color: white; }
 .approach-bg .section-body { color: #c8dce3; }
 .approach-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
 }
 .approach-image {
 border-radius: 4px;
 overflow: hidden;
 aspect-ratio: 4/3;
 }
 .approach-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 }
 .pillars {
 display: flex;
 flex-direction: column;
 gap: 24px;
 margin-top: 36px;
 }
 .pillar {
 display: flex;
 gap: 16px;
 align-items: flex-start;
 }
 .pillar-dot {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 background: var(--ocean-light);
 margin-top: 6px;
 flex-shrink: 0;
 }
 .pillar-title {
 font-weight: 500;
 color: white;
 margin-bottom: 4px;
 font-size: 0.95rem;
 }
 .pillar-desc {
 font-size: 0.875rem;
 color: #a8c0c9;
 line-height: 1.6;
 }
 /* ── ABOUT ── */
 .about-bg { background: var(--mist); }
 .about-layout {
 display: grid;
 grid-template-columns: 280px 1fr;
 gap: 60px;
 align-items: start;
 }
 .about-photo-wrap {
 aspect-ratio: 3/4;
 background: var(--stone);
 border-radius: 4px;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
 }
 .about-photo-placeholder {
 font-family: 'Cormorant Garamond', serif;
 font-size: 3rem;
 color: var(--driftwood);
 font-weight: 400;
 }
 .about-photo-wrap img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 }
 .about-content { padding-top: 16px; }
 .about-name {
 font-family: 'Cormorant Garamond', serif;
 font-size: 2rem;
 font-weight: 600;
 color: var(--ink);
 margin-bottom: 4px;
 }
 .about-cred {
 font-size: 0.85rem;
 color: var(--ocean);
 font-weight: 500;
 letter-spacing: 0.04em;
 margin-bottom: 24px;
 }
 .about-body {
 font-size: 0.975rem;
 color: #5a5047;
 line-height: 1.8;
 }
 /* ── CONTACT ── */
 .contact-bg { background: var(--white); }
 .contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px;
}

.contact-left {
  background-color: #2a4d5c;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right {
  background-color: #ffffff;
  padding: 0;
}

.contact-bottom {
  text-align: center;
  padding-top: 20px;
}

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

  .contact-right {
    min-height: 700px;
  }
}
 .contact-form {
 display: flex;
 flex-direction: column;
 gap: 16px;
 }
 label {
 display: block;
 font-size: 0.8rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 text-transform: uppercase;
 color: var(--driftwood);
 margin-bottom: 5px;
 }
 input, textarea {
 width: 100%;
 padding: 12px 14px;
 border: 1.5px solid var(--stone);
 border-radius: 4px;
 font-family: 'DM Sans', sans-serif;
 font-size: 0.95rem;
 color: var(--ink);
 background: var(--mist);
 transition: border-color 0.2s;
 outline: none;
 }
 input:focus, textarea:focus { border-color: var(--ocean-light); background: white; }
 textarea { min-height: 120px; resize: vertical; }
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ocean-dark);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--ocean-dark);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  max-width: 480px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--ocean);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
 .contact-detail-icon {
 width: 38px;
 height: 38px;
 border-radius: 50%;
 background: var(--mist);
 border: 1.5px solid var(--stone);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 }
 .contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--ocean); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
 .contact-detail-text strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
 .contact-detail-text span { font-size: 0.85rem; color: #6b5f54; }
 .consult-note {
 background: var(--ocean-dark);
 color: white;
 padding: 28px 28px;
 border-radius: 4px;
 margin-top: 32px;
 }
 .consult-note strong { display: block; font-size: 1rem; margin-bottom: 8px; }
 .consult-note p { font-size: 0.875rem; color: #c0d8e0; line-height: 1.6; }

 /* ── RESPONSIVE ── */
 @media (max-width: 860px) {
 .hero { grid-template-columns: 1fr; min-height: auto; }
 .hero-image { height: 360px; }
 .hero-text { padding: 52px 28px; }
 .photo-strip { grid-template-columns: 1fr; height: auto; margin-top: 32px; }
 .photo-strip-item { height: 220px; }
 .approach-grid { grid-template-columns: 1fr; }
 .approach-image { display: none; }
 .about-layout { grid-template-columns: 1fr; }
 .about-photo-wrap { aspect-ratio: 3/4; max-width: 340px; margin: 0 auto; }
 .section { padding: 56px 24px; }
 nav { padding: 14px 20px; }
 .nav-brand { font-size: 1.15rem; }
 .nav-tagline { font-size: 0.6rem; }
 .nav-links { display: none; }
 .hamburger { display: flex; }
 .mobile-menu.open { display: flex; }
 }
 /* ── ANIMATIONS ── */
 @keyframes fadeUp {
 from { opacity: 0; transform: translateY(18px); }
 to { opacity: 1; transform: translateY(0); }
 }
 .hero-eyebrow { animation: fadeUp 0.6s ease both; }
 .hero-heading { animation: fadeUp 0.6s 0.1s ease both; }
 .hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
 .hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
 
 /* ── HAMBURGER MENU ── */
 .hamburger {
 display: none;
 flex-direction: column;
 gap: 5px;
 cursor: pointer;
 padding: 4px;
 background: none;
 border: none;
 z-index: 200;
 }
 .hamburger span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--ocean-dark);
 border-radius: 2px;
 transition: all 0.3s;
 }
 .mobile-menu {
 display: none;
 position: fixed;
 top: 0; left: 0; right: 0; bottom: 0;
 background: var(--white);
 z-index: 150;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 36px;
 }
 .mobile-menu a {
 font-family: 'Cormorant Garamond', serif;
 font-size: 2rem;
 font-weight: 600;
 color: var(--ocean-dark);
 text-decoration: none;
 letter-spacing: 0.02em;
 }
 .mobile-menu a:hover { color: var(--ocean); }
 .mobile-menu-close {
 position: absolute;
 top: 20px; right: 20px;
 background: none;
 border: none;
 font-size: 2rem;
 color: var(--ocean-dark);
 cursor: pointer;
 line-height: 1;
 }
 @media (max-width: 860px) {
 .nav-links { display: none !important; }
 .hamburger { display: flex; }
 }
/* ── FOOTER ── */
.site-footer {
  background-color: #f5f0e8;
  padding: 40px 40px 8px;
  border-top: 1px solid #e0d8cc;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.footer-logo-img {
  width: 200px;
  margin-bottom: 12px;
  display: block;
}

.footer-blurb {
  font-size: 0.875rem;
  color: var(--driftwood);
  line-height: 1.7;
  text-align: left;
  max-width: 280px;
}

.footer-col-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-dark);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.footer-contact-item {
  font-size: 0.875rem;
  color: var(--ocean-dark);
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.footer-info-item {
  font-size: 0.875rem;
  color: var(--ocean-dark);
  margin-bottom: 8px;
}

.footer-service-area {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.footer-bottom {
  background-color: #f5f0e8;
  max-width: 100%;
  margin: 0;
  padding: 12px 40px;
  border-top: 1px solid #e0d8cc;
  font-size: 0.775rem;
  color: var(--driftwood);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 32px 20px 8px;
  }

  .footer-bottom {
    padding: 12px 20px;
  }

  .footer-logo-img {
    width: 160px;
  }

  .footer-blurb {
    max-width: 100%;
  }
}

/* ── CONTACT PAGE ── */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px;
}

.contact-left {
  background-color: #2a4d5c;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-right {
  background-color: #ffffff;
  padding: 0;
}

.contact-bottom {
  text-align: left;
  padding-top: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.required {
  color: #3d6b7d;
}

@media (max-width: 768px) {
  .contact-top {
    grid-template-columns: 1fr;
  }
  .contact-right {
    min-height: 700px;
  }
  .footer-details {
    flex-direction: column;
    gap: 8px;
  }
  .background-body p { margin-bottom: 12px; }
}
<style>
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 :root {
 --sand: #f5f0e8;
 --stone: #e8dfd0;
 --ocean: #3d6b7d;
 --ocean-light: #5b8fa3;
 --ocean-dark: #2a4d5c;
 --kelp: #7a8c6e;
 --driftwood: #8c7b6a;
 --ink: #2c2825;
 --mist: #f0ebe1;
 --white: #fdfcfa;
 }


 /* ── SECTION WRAPPERS ── */
 .section { padding: 80px 40px; }
 .section-narrow { max-width: 860px; margin: 0 auto; }
 .section-wide { max-width: 1100px; margin: 0 auto; }
 .section-label {
 font-size: 0.72rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--ocean);
 font-weight: 500;
 margin-bottom: 12px;
 }
 .section-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(1.8rem, 3vw, 2.6rem);
 font-weight: 600;
 color: var(--ink);
 line-height: 1.2;
 margin-bottom: 20px;
 }
 .section-body {
 font-size: 1rem;
 color: #5a5047;
 line-height: 1.75;
 max-width: 640px;
 }
 .btn-primary {
 background: var(--ocean);
 color: var(--white);
 padding: 14px 32px;
 border-radius: 4px;
 text-decoration: none;
 font-weight: 500;
 font-size: 0.9rem;
 letter-spacing: 0.02em;
 transition: background 0.2s;
 display: inline-block;
 }
 .btn-primary:hover { background: var(--ocean-dark); }
 /* ── ABOUT HERO ── */
 .about-hero {
 background: var(--white);
 padding: 80px 40px 60px;
 }
 .about-hero-inner {
 max-width: 1100px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 320px 1fr;
 gap: 60px;
 align-items: start;
 }
 .about-photo-wrap {
 aspect-ratio: 3/4;
 background: var(--stone);
 border-radius: 4px;
 overflow: hidden;
 }
 .about-photo-wrap img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 }
 .about-hero-content {
 padding-top: 16px;
 }
 .about-hero-label {
 font-size: 0.72rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--ocean);
 font-weight: 500;
 margin-bottom: 12px;
 }
 .about-hero-heading {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(2rem, 3.5vw, 3rem);
 font-weight: 600;
 line-height: 1.15;
 color: var(--ink);
 margin-bottom: 8px;
 }
 .about-hero-heading em {
 font-style: italic;
 color: var(--ocean);
 }
 .about-hero-subtitle {
 font-size: 0.9rem;
 color: var(--ocean);
 font-weight: 500;
 letter-spacing: 0.04em;
 margin-bottom: 28px;
 line-height: 1.6;
 }
 .about-hero-body {
 font-size: 0.975rem;
 color: #5a5047;
 line-height: 1.8;
 max-width: 580px;
 }
 .about-hero-body p { margin-bottom: 20px; }
 /* ── PHILOSOPHY ── */
 .philosophy-bg { background: var(--ocean-dark); color: white; }
 .philosophy-bg .section-label { color: #a8ccd8; }
 .philosophy-bg .section-title { color: white; }
 .philosophy-inner {
 max-width: 860px;
 margin: 0 auto;
 }
 .philosophy-body {
 font-size: 0.975rem;
 color: #c8dce3;
 line-height: 1.8;
 margin-bottom: 20px;
 }
 .philosophy-quote {
 border-left: 3px solid var(--ocean-light);
 padding: 20px 28px;
 margin: 36px 0;
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.25rem;
 font-style: italic;
 color: white;
 line-height: 1.6;
 }
 /* ── BACKGROUND ── */
 .background-bg { background: var(--mist); }
 .background-inner {
 max-width: 860px;
 margin: 0 auto;
 }
 .background-body {
 font-size: 0.975rem;
 color: #5a5047;
 line-height: 1.6;
 }
 .background-body p { margin-bottom: 12px; }
 /* ── WHAT TO EXPECT ── */
 .expect-bg { background: var(--white); }
 .expect-inner {
 max-width: 1100px;
 margin: 0 auto;
 }
 .expect-body {
 font-size: 0.975rem;
 color: #5a5047;
 line-height: 1.8;
 max-width: 640px;
 margin-bottom: 40px;
 }
 .expect-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2px;
 background: var(--stone);
 border: 2px solid var(--stone);
 }
 .expect-card {
 background: var(--white);
 padding: 36px 32px;
 transition: background 0.2s;
 }
 .expect-card:hover { background: var(--mist); }
 .expect-card-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.2rem;
 font-weight: 600;
 color: var(--ink);
 margin-bottom: 10px;
 line-height: 1.3;
 }
 .expect-card-desc {
 font-size: 0.9rem;
 color: #6b5f54;
 line-height: 1.65;
 }
 /* ── EXPERTISE ── */
 .expertise-bg { background: var(--sand); }
 .expertise-inner {
 max-width: 1100px;
 margin: 0 auto;
 }
 .expertise-body {
 font-size: 0.975rem;
 color: #5a5047;
 line-height: 1.8;
 max-width: 640px;
 margin-bottom: 40px;
 }
 .expertise-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2px;
 background: var(--stone);
 border: 2px solid var(--stone);
 }
 .expertise-grid--2col {
 grid-template-columns: repeat(2, 1fr);
}
 .expertise-card {
 background: var(--sand);
 padding: 36px 32px;
 transition: background 0.2s;
 }
 .expertise-card:hover { background: var(--mist); }
 .expertise-card-icon {
 width: 44px;
 height: 44px;
 border-radius: 50%;
 background: var(--ocean);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 20px;
 }
 .expertise-card-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
 .expertise-card-title {
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.2rem;
 font-weight: 600;
 color: var(--ink);
 margin-bottom: 10px;
 line-height: 1.3;
 }
 .expertise-card-desc {
 font-size: 0.9rem;
 color: #6b5f54;
 line-height: 1.65;
 }
 /* ── GROWTH NOTE ── */
 .growth-note {
 background: var(--ocean-dark);
 color: white;
 padding: 28px;
 border-radius: 4px;
 margin-top: 40px;
 max-width: 640px;
 }
 .growth-note p {
 font-size: 0.925rem;
 color: #c0d8e0;
 line-height: 1.7;
 font-style: italic;
 }
 /* ── CTA ── */
 .cta-section {
 background: var(--mist);
 text-align: center;
 }
 .cta-inner {
 max-width: 640px;
 margin: 0 auto;
 }
 .cta-body {
 font-size: 0.975rem;
 color: #5a5047;
 line-height: 1.8;
 margin-bottom: 32px;
 }
 /* ── FOOTER ── */
 footer {
 background: var(--ink);
 color: #9a8e84;
 padding: 32px 40px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 12px;
 font-size: 0.825rem;
 }
 footer strong { color: #d0c8bf; }
 /* ── HAMBURGER MENU ── */
 .hamburger {
 display: none;
 flex-direction: column;
 gap: 5px;
 cursor: pointer;
 padding: 4px;
 background: none;
 border: none;
 z-index: 200;
 }
 .hamburger span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--ocean-dark);
 border-radius: 2px;
 transition: all 0.3s;
 }
 .mobile-menu {
 display: none;
 position: fixed;
 top: 0; left: 0; right: 0; bottom: 0;
 background: var(--white);
 z-index: 150;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 36px;
 }
 .mobile-menu a {
 font-family: 'Cormorant Garamond', serif;
 font-size: 2rem;
 font-weight: 600;
 color: var(--ocean-dark);
 text-decoration: none;
 letter-spacing: 0.02em;
 }
 .mobile-menu a:hover { color: var(--ocean); }
 .mobile-menu-close {
 position: absolute;
 top: 20px; right: 20px;
 background: none;
 border: none;
 font-size: 2rem;
 color: var(--ocean-dark);
 cursor: pointer;
 line-height: 1;
 }
 /* ── RESPONSIVE ── */
 @media (max-width: 860px) {
 .about-hero-inner { grid-template-columns: 1fr; }
 .about-photo-wrap { max-width: 340px; margin: 0 auto; }
 .expect-grid, .expertise-grid { grid-template-columns: 1fr; }
 .section { padding: 56px 24px; }
 .about-hero { padding: 56px 24px 40px; }
 nav { padding: 14px 20px; }
 .nav-brand { font-size: 1.15rem; }
 .nav-tagline { font-size: 0.6rem; }
 .nav-links { display: none !important; }
 .hamburger { display: flex; }
 .mobile-menu.open { display: flex; }
 }
 /* ── ANIMATIONS ── */
 @keyframes fadeUp {
 from { opacity: 0; transform: translateY(18px); }
 to { opacity: 1; transform: translateY(0); }
 }
 .about-hero-label { animation: fadeUp 0.6s ease both; }
 .about-hero-heading { animation: fadeUp 0.6s 0.1s ease both; }
 .about-hero-subtitle { animation: fadeUp 0.6s 0.2s ease both; }
 .about-hero-body { animation: fadeUp 0.6s 0.3s ease both; }
 </style>