/* ============================================================
   KM Consulting Services — Shared Stylesheet
   Brand: Clarity today. Growth tomorrow.
   ============================================================ */

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

:root {
    /* Brand palette — teal #0A6B78, gold #C99A3D, cream #F6F1EB, charcoal #333333 */
    --teal-deep: #0a6b78;
    --teal: #0d7d8c;
    --teal-soft: #5a8e97;
    --gold: #c99a3d;
    --gold-soft: #d9b265;
    --cream: #f6f1eb;
    --cream-warm: #ede4d6;
    --cream-deep: #e6d9c5;
    --ink: #333333;
    --ink-soft: #5c5c5c;
    --whisper: #8a8580;
}

html {
    scroll-behavior: smooth;
    /* Offset anchor jumps so fixed nav doesn't cover section tops */
    scroll-padding-top: 7rem;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at top right, rgba(201, 154, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(10, 107, 120, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Display font helper */
.display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.italic {
    font-style: italic;
}

/* ============================================================
   Navigation
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 3rem;
    background: rgba(246, 241, 235, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(10, 107, 120, 0.08);
}

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

.nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--teal-deep);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color 0.4s ease;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--teal-deep);
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 1.4rem;
    background: var(--cream);
    border: 1px solid rgba(10, 107, 120, 0.12);
    box-shadow: 0 20px 50px rgba(10, 107, 120, 0.15);
    border-radius: 3px;
    padding: 0.6rem 0;
    min-width: 230px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 101;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Right-aligned variant for dropdowns near the right edge (e.g. Forms) */
.nav-dropdown-menu.align-right {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}

.nav-dropdown:hover .nav-dropdown-menu.align-right,
.nav-dropdown:focus-within .nav-dropdown-menu.align-right {
    transform: translateX(0) translateY(0);
}

.nav-dropdown-menu li {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--cream-warm);
    color: var(--teal-deep);
    padding-left: 1.8rem;
}

/* ============================================================
   Scroll-triggered reveals — subtle editorial motion
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Premium Divider — gold motif between sections */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
    background: var(--cream);
    position: relative;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.divider-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 500;
}

/* ============================================================
   Manifesto — signature moment
   ============================================================ */
.manifesto {
    background: var(--cream);
    padding: 10rem 3rem;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 8%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18rem;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    font-weight: 500;
    font-style: italic;
}

.manifesto-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.manifesto-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.manifesto-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.manifesto-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.25;
    font-weight: 400;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
}

.manifesto-text .accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.manifesto-attribution {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.manifesto-attribution::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--teal);
}

/* Refined hover for cards */
.who-item {
    cursor: default;
}

/* ============================================================
   Hero Section — Editorial
   ============================================================ */
.hero {
    min-height: 100vh;
    padding: 8rem 3rem 6rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 154, 61, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--teal-deep);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--teal);
    margin: 2.5rem 0;
    font-weight: 400;
}

.hero-tagline::before {
    content: '— ';
    color: var(--gold);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--teal-deep);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 107, 120, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--teal-deep);
    border-bottom: 1px solid var(--teal-deep);
    padding: 1rem 0;
}

.btn-ghost:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--teal-deep);
}

.btn-gold:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 154, 61, 0.3);
}

/* Hero Image / Logo Display */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--cream-warm);
    border-radius: 4px;
    transform: rotate(-2deg);
    z-index: 0;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
}

.hero-visual img {
    position: relative;
    z-index: 2;
    max-width: 85%;
    height: auto;
    border-radius: 2px;
}

/* ============================================================
   Sections
   ============================================================ */
section {
    padding: 8rem 3rem;
    position: relative;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
    max-width: 750px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--teal-deep);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-header h2 .accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================================
   Who We Serve — Editorial Layout
   ============================================================ */
.serve-section {
    background: var(--cream-warm);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(10, 107, 120, 0.15);
}

.serve-item {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(10, 107, 120, 0.15);
    border-bottom: 1px solid rgba(10, 107, 120, 0.15);
    position: relative;
    transition: background 0.4s ease;
}

.serve-item:last-child {
    border-right: none;
}

.serve-item:hover {
    background: var(--cream);
}

.serve-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.serve-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--teal-deep);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.serve-item p {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================================
   What We Offer — Layered Cards
   ============================================================ */
.offer-section {
    background: var(--cream);
}

.offer-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.offer-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 3rem;
    align-items: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(10, 107, 120, 0.12);
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.offer-row:hover {
    padding-left: 3rem;
}

.offer-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.offer-row:hover::before {
    width: 30px;
}

.offer-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
}

.offer-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--teal-deep);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.offer-content p {
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
}

.offer-link {
    text-align: right;
}

.offer-link span {
    font-size: 0.8rem;
    color: var(--teal-deep);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.offer-row:hover .offer-link span {
    color: var(--gold);
}

/* Bundles callout row */
.offer-bundle {
    margin-top: 3rem;
    padding: 2.5rem 3rem;
    background: var(--teal-deep);
    color: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-decoration: none;
    transition: all 0.4s ease;
}

.offer-bundle:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(10, 107, 120, 0.25);
}

.offer-bundle h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-soft);
    margin-bottom: 0.4rem;
}

.offer-bundle p {
    color: rgba(246, 241, 235, 0.85);
    font-weight: 300;
    font-size: 0.95rem;
    max-width: 600px;
}

.offer-bundle .offer-bundle-cta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--cream);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    white-space: nowrap;
}

/* ============================================================
   Why Choose — Story Style
   ============================================================ */
.why-section {
    background: var(--teal-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 154, 61, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.why-section .section-header h2 {
    color: var(--cream);
}

.why-section .section-header p {
    color: rgba(246, 241, 235, 0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.why-item {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(201, 154, 61, 0.4);
}

.why-item::before {
    content: attr(data-num);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    background: var(--teal-deep);
    padding: 0 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
}

.why-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.why-item p {
    color: rgba(246, 241, 235, 0.75);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    background: var(--cream-warm);
    text-align: center;
    padding: 8rem 3rem;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--teal-deep);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 .accent {
    font-style: italic;
    color: var(--gold);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-note {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--whisper);
    font-style: italic;
}

/* ============================================================
   Services Page
   ============================================================ */
.services-hero {
    padding: 12rem 3rem 5rem;
    background: var(--cream);
    text-align: center;
    position: relative;
}

.services-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--teal-deep);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.services-hero h1 .accent {
    font-style: italic;
    color: var(--gold);
}

.services-hero p {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* In-page service navigation (jump links) */
.service-nav {
    background: var(--cream);
    padding: 0 3rem 3rem;
    text-align: center;
}

.service-nav-inner {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
    max-width: 900px;
}

.service-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--teal-deep);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(10, 107, 120, 0.25);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-nav a:hover {
    background: var(--teal-deep);
    color: var(--cream);
    border-color: var(--teal-deep);
}

/* Service category block */
.service-block {
    padding: 5rem 3rem;
}

.service-block:nth-of-type(even) {
    background: var(--cream-warm);
}

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

.service-block-header {
    margin-bottom: 3.5rem;
    max-width: 760px;
}

.service-block-header .package-eyebrow {
    margin-bottom: 0.8rem;
}

.service-block-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--teal-deep);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.service-block-header h2 .accent {
    font-style: italic;
    color: var(--gold);
}

.service-block-header p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
}

.package-detail {
    margin: 0 0 2.5rem;
    background: var(--cream);
    padding: 3rem;
    position: relative;
}

.service-block:nth-of-type(even) .package-detail {
    background: var(--cream);
}

.service-block:nth-of-type(odd) .package-detail {
    background: var(--cream-warm);
}

.package-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.package-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(10, 107, 120, 0.15);
}

.package-detail h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.package-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.package-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: right;
}

.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--teal-deep);
    font-weight: 500;
    white-space: nowrap;
}

.package-timeline {
    color: var(--whisper);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.package-description {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 760px;
}

.package-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 2rem;
}

.package-features.single-col {
    grid-template-columns: 1fr;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--ink);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
    font-weight: 400;
}

.package-features li::before {
    content: '—';
    color: var(--gold);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-note {
    margin-top: 1.8rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.7;
    padding-top: 1.2rem;
    border-top: 1px dashed rgba(10, 107, 120, 0.2);
}

/* Pricing / retainer table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.price-table th,
.price-table td {
    text-align: left;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(10, 107, 120, 0.12);
}

.price-table th {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--whisper);
    font-weight: 600;
}

.price-table td:first-child {
    color: var(--teal-deep);
    font-weight: 500;
}

.price-table td:last-child {
    text-align: right;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.price-table tr:last-child td {
    border-bottom: none;
}

/* Bundles */
.bundle-card {
    background: var(--cream);
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(10, 107, 120, 0.1);
}

.service-block:nth-of-type(odd) .bundle-card {
    background: var(--cream-warm);
}

.bundle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bundle-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.bundle-discount {
    background: var(--gold);
    color: var(--teal-deep);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
}

.bundle-best {
    color: var(--ink-soft);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1rem;
}

.bundle-includes {
    color: var(--ink);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.bundle-includes strong {
    color: var(--teal-deep);
    font-weight: 600;
}

.bundle-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(10, 107, 120, 0.12);
}

.bundle-meta .bundle-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--teal-deep);
    font-weight: 600;
}

.bundle-meta .bundle-timeline {
    color: var(--whisper);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    align-self: center;
}

/* À La Carte */
.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 1rem;
}

.alacarte-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    position: relative;
    transition: all 0.4s ease;
}

.service-block:nth-of-type(odd) .alacarte-card {
    background: var(--cream-warm);
}

.alacarte-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 107, 120, 0.1);
}

.alacarte-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.alacarte-card .alacarte-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.alacarte-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.alacarte-card ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(10, 107, 120, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-weight: 400;
}

.alacarte-card ul li:last-child {
    border-bottom: none;
}

.alacarte-card ul li strong {
    color: var(--teal-deep);
    font-weight: 500;
}

.alacarte-card .price {
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
    text-align: right;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-hero {
    padding: 12rem 3rem 4rem;
    background: var(--cream);
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--teal-deep);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-hero h1 .accent {
    font-style: italic;
    color: var(--gold);
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.contact-section {
    padding: 4rem 3rem 8rem;
    background: var(--cream);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
}

.contact-info-box {
    position: relative;
}

.contact-info-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(10, 107, 120, 0.1);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--whisper);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-method-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--teal-deep);
    font-weight: 500;
}

.contact-method-value a {
    color: var(--teal-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s ease;
    padding-bottom: 2px;
}

.contact-method-value a:hover {
    color: var(--gold);
}

.consultation-card {
    background: var(--teal-deep);
    color: var(--cream);
    padding: 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 154, 61, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.consultation-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.consultation-detail {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.consultation-detail strong {
    color: var(--gold-soft);
    font-weight: 500;
    min-width: 90px;
}

.consultation-card p {
    color: rgba(246, 241, 235, 0.85);
    font-weight: 300;
}

/* Form */
.contact-form-box {
    background: var(--cream-warm);
    padding: 3rem;
    position: relative;
}

.contact-form-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form-box .form-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--teal-deep);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid rgba(10, 107, 120, 0.25);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--whisper);
    font-weight: 300;
}

.form-footnote {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.form-footnote a {
    color: var(--teal-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    font-weight: 500;
}

.form-footnote a:hover {
    color: var(--gold);
}

/* ============================================================
   About Page
   ============================================================ */
.about-hero {
    padding: 12rem 3rem 5rem;
    background: var(--cream);
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 400;
    color: var(--teal-deep);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero h1 .accent {
    font-style: italic;
    color: var(--gold);
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.about-section {
    padding: 5rem 3rem 7rem;
    background: var(--cream);
}

.about-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
}

.about-photo-wrap {
    position: sticky;
    top: 7rem;
}

.about-photo-frame {
    position: relative;
}

.about-photo-frame::before {
    content: '';
    position: absolute;
    inset: -18px -18px 18px 18px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: 0;
}

.about-photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 24px 60px rgba(10, 107, 120, 0.18);
}

.about-bio .section-eyebrow {
    margin-bottom: 1.2rem;
}

.about-bio h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--teal-deep);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-bio p {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.about-bio p strong {
    color: var(--teal-deep);
    font-weight: 500;
}

.about-bio .about-location {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--teal);
    margin-top: 2rem;
}

/* ============================================================
   Forms Page
   ============================================================ */
.forms-hero {
    padding: 12rem 3rem 4rem;
    background: var(--cream);
    text-align: center;
}

.forms-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--teal-deep);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.forms-hero h1 .accent {
    font-style: italic;
    color: var(--gold);
}

.forms-hero p {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.forms-section {
    padding: 3rem 3rem 6rem;
    background: var(--cream);
}

.forms-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.form-card {
    background: var(--cream-warm);
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 107, 120, 0.12);
}

.form-card .form-card-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-card p {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.form-card .btn {
    align-self: flex-start;
}

.forms-note {
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.8;
}

.forms-note a {
    color: var(--teal-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    font-weight: 500;
}

/* ============================================================
   Form Pages (/forms/*)
   ============================================================ */
.form-page-section {
    padding: 3rem 3rem 7rem;
    background: var(--cream);
}

.form-panel {
    max-width: 760px;
    margin: 0 auto;
    background: var(--cream-warm);
    padding: 3.5rem;
    position: relative;
}

.form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.form-intro {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.02rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.form-group .required {
    color: var(--gold);
    margin-left: 0.15rem;
}

.form-group select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid rgba(10, 107, 120, 0.25);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%3E%3Cpath%20fill%3D%22%23c99a3d%22%20d%3D%22M6%208L0%200h12z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.field-helper {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--whisper);
    font-style: italic;
    font-weight: 300;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 0.6rem;
}

/* Single-column variant — every label displays in full */
.checkbox-group.single-col {
    grid-template-columns: 1fr;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.9rem 1.1rem;
    background: var(--cream);
    border: 1px solid rgba(10, 107, 120, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--gold);
    background: var(--cream-deep);
}

.checkbox-item input {
    /* Reset the full-width text-input styling inherited from .form-group input */
    width: auto;
    padding: 0;
    border: none;
    margin: 3px 0 0;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.checkbox-item label {
    flex: 1;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    line-height: 1.5;
}

.form-submit-note {
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 1.8rem;
}

.form-back {
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--teal-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.form-back:hover {
    color: var(--gold);
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--teal-deep);
    color: var(--cream);
    padding: 4rem 3rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 154, 61, 0.2);
}

.footer-brand h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(246, 241, 235, 0.75);
    font-weight: 300;
    max-width: 400px;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(246, 241, 235, 0.85);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--gold-soft);
    text-decoration: none;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: rgba(246, 241, 235, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 968px) {
    nav {
        padding: 1.5rem;
    }

    .nav-links {
        gap: 1.3rem;
    }

    .nav-links a {
        font-size: 0.72rem;
    }

    /* Dropdown collapses to a plain link target on mobile */
    .nav-dropdown-menu {
        display: none;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

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

    .hero-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .serve-item {
        border-right: none;
    }

    .offer-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .offer-link {
        text-align: left;
    }

    .offer-bundle {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .service-block {
        padding: 4rem 1.5rem;
    }

    .package-detail {
        padding: 2.5rem 1.5rem;
    }

    .package-features {
        grid-template-columns: 1fr;
    }

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

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

    .form-panel {
        padding: 2.5rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .about-photo-wrap {
        position: static;
        max-width: 380px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact {
        text-align: left;
    }

    .package-detail-header {
        flex-direction: column;
    }

    .package-meta {
        text-align: left;
    }

    .bundle-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
}
