/* ============================================================
   SECTIONS
   Section-specific layout and styling. Each block is scoped
   to its own section ID or unique class. Order matches the
   DOM top-to-bottom for easy navigation.
   ============================================================ */

/* ─── NAV ───────────────────────────────────────────────────── */
#nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   padding: 22px 0;
   transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#nav.scrolled {
   background: rgba(var(--cream-rgb), 0.95);
   backdrop-filter: blur(12px);
   padding: 14px 0;
   box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.nav-logo {
   font-family: var(--ff-display);
   font-size: 1.35rem;
   font-weight: 500;
   color: var(--charcoal);
   letter-spacing: 0.01em;
   display: inline-block;
   line-height: 0;
   border: 5px solid var(--clay);
}

.nav-logo-img {
   height: 200px;
   width: auto;
   display: block;
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 36px;
}

.nav-links a {
   font-size: 0.78rem;
   font-weight: 500;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--charcoal);
   transition: color 0.2s;
}

.nav-links a:hover {
   color: var(--clay);
}

.nav-cta {
   margin-left: 12px;
   color: var(--white) !important;
}

.hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 6px;
   padding: 6px;
   width: 36px;
   height: 36px;
}

.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   border-radius: 2px;
   background: var(--charcoal);
   transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
   min-height: 100vh;
   height: 100vh;
   display: grid;
   grid-template-columns: 1fr 1fr;
   grid-template-rows: 1fr;
   position: relative;
   overflow: hidden;
}

.hero-left {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   padding: 260px 64px 80px 64px;
   background: var(--cream);
   position: relative;
   z-index: 1;
}

.hero-eyebrow {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 32px;
   opacity: 0;
   animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow-line {
   width: 32px;
   height: 1px;
   background: var(--clay);
}

.hero-eyebrow-text {
   font-size: 0.72rem;
   font-weight: 500;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--clay);
}

.hero-heading {
   font-family: var(--ff-display);
   font-size: clamp(2.6rem, 4.5vw, 4rem);
   font-weight: 500;
   line-height: 1.12;
   color: var(--charcoal);
   margin-bottom: 28px;
   opacity: 0;
   animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-heading em {
   font-style: italic;
   color: var(--clay);
}

.hero-body {
   font-size: 1.05rem;
   line-height: 1.8;
   color: var(--stone);
   max-width: 420px;
   margin-bottom: 44px;
   opacity: 0;
   animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.hero-actions {
   display: flex;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
   opacity: 0;
   animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-stats {
   display: none;
   gap: 40px;
   margin-top: 60px;
   padding-top: 40px;
   border-top: 1px solid var(--border);
   opacity: 0;
   animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}

.stat-num {
   font-family: var(--ff-display);
   font-size: 2rem;
   font-weight: 500;
   color: var(--charcoal);
   line-height: 1;
}

.stat-label {
   font-size: 0.75rem;
   letter-spacing: 0.06em;
   color: var(--stone);
   margin-top: 4px;
}

.hero-right {
   position: relative;
   overflow: visible;
}

.hero-img-main {
   width: 100%;
   height: 100%;
   position: absolute;
   inset: 0;
   object-fit: cover;
   object-position: center;
   display: block;
}

.hero-badge {
   position: absolute;
   bottom: 48px;
   left: 24px;
   background: var(--warm-white);
   border: 1px solid var(--border);
   padding: 18px 22px;
   border-radius: 2px;
   z-index: 2;
   box-shadow: 0 12px 40px rgba(var(--charcoal-rgb), 0.1);
   animation: fadeUp 0.9s var(--ease-out) 1.1s both;
}

.hero-badge-title {
   font-family: var(--ff-display);
   font-size: 1.1rem;
   font-weight: 500;
   color: var(--charcoal);
}

.hero-badge-sub {
   font-size: 0.72rem;
   color: var(--stone);
   margin-top: 3px;
   letter-spacing: 0.05em;
}

.hero-badge-dot {
   display: inline-block;
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--sage);
   margin-right: 6px;
   vertical-align: middle;
}

.zipper-img {
   margin: 32px 0;
   mix-blend-mode: multiply;
   width: 100%;
   height: 100px;
   background-image: url('../images/zipper.png');
   background-repeat: repeat-x;
   background-size: auto 100%;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
#about {
   background: var(--warm-white);
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
}

.about-img-wrap {
   position: relative;
}

.about-img-main {
   width: 100%;
   aspect-ratio: 3/4;
   overflow: hidden;
   border-radius: 2px;
}

.about-img-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
}

.about-img-accent {
   position: absolute;
   bottom: -40px;
   right: -40px;
   width: 55%;
   aspect-ratio: 1;
   overflow: hidden;
   border-radius: 2px;
   border: 6px solid var(--warm-white);
}

.about-img-accent img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

.about-quote {
   position: absolute;
   top: 40px;
   right: -24px;
   background: var(--clay);
   color: var(--white);
   padding: 16px 20px;
   width: 160px;
   border-radius: 2px;
   font-family: var(--ff-display);
   font-size: 1rem;
   font-style: italic;
   line-height: 1.4;
}

.about-content {
   padding-right: 20px;
}

.about-name {
   font-family: var(--ff-display);
   font-size: 1.6rem;
   font-weight: 500;
   margin-bottom: 4px;
}

.about-title {
   font-size: 0.8rem;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--clay);
   margin-bottom: 28px;
}

.about-bio {
   font-size: 1rem;
   line-height: 1.85;
   color: var(--stone);
   margin-bottom: 20px;
}

.credential-chip {
   padding: 7px 16px;
   border: 1px solid var(--border);
   border-radius: 100px;
   font-size: 0.75rem;
   color: var(--stone);
   letter-spacing: 0.04em;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
#services {
   background: var(--cream);
}

.services-header {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: end;
   margin-bottom: 64px;
}

.services-cta {
   margin-top: 28px;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2px;
}

.services-grid .service-card:last-child:nth-child(3n - 2) {
   grid-column: 1 / -1;
}

.service-card {
   background: var(--warm-white);
   padding: 44px 36px;
   position: relative;
   overflow: hidden;
   transition: background 0.35s var(--ease-out);
   cursor: default;
}

.service-card::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: var(--clay);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s var(--ease-out);
}

.service-card:hover::after {
   transform: scaleX(1);
}

.service-card:hover {
   background: var(--white);
}

.service-icon {
   width: 56px;
   height: 56px;
   margin-bottom: 24px;
   background: var(--clay);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.service-icon svg {
   width: 28px;
   height: 28px;
   color: #000000;
}

.service-name {
   font-family: var(--ff-display);
   font-size: 1.25rem;
   font-weight: 500;
   margin-bottom: 14px;
}

.service-desc {
   font-size: 0.9rem;
   line-height: 1.75;
   color: var(--stone);
}

/* ─── GALLERY ───────────────────────────────────────────────── */
#gallery {
   display: none;
   /* TODO: unhide when photos are ready */
   background: var(--warm-white);
}

.gallery-header {
   text-align: center;
   margin-bottom: 56px;
}

.gallery-tabs {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-bottom: 44px;
}

.gallery-tab {
   padding: 8px 22px;
   font-size: 0.78rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   border: 1.5px solid var(--border);
   border-radius: 100px;
   color: var(--stone);
   transition: all 0.25s;
   cursor: pointer;
}

.gallery-tab.active,
.gallery-tab:hover {
   background: var(--charcoal);
   border-color: var(--charcoal);
   color: var(--cream);
}

.gallery-grid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-template-rows: auto;
   gap: 12px;
}

.gallery-item {
   overflow: hidden;
   border-radius: 2px;
   position: relative;
}

.gallery-item img,
.gallery-item .img-placeholder {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img,
.gallery-item:hover .img-placeholder::before {
   transform: scale(1.04);
}

.gallery-item-1 {
   grid-column: span 8;
   height: 420px;
}

.gallery-item-2 {
   grid-column: span 4;
   height: 420px;
}

.gallery-item-3 {
   grid-column: span 4;
   height: 340px;
}

.gallery-item-4 {
   grid-column: span 4;
   height: 340px;
}

.gallery-item-5 {
   grid-column: span 4;
   height: 340px;
}

.gallery-label {
   position: absolute;
   bottom: 16px;
   left: 16px;
   background: rgba(var(--warm-white-rgb), 0.92);
   backdrop-filter: blur(6px);
   padding: 5px 12px;
   border-radius: 100px;
   font-size: 0.7rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--charcoal);
   opacity: 0;
   transform: translateY(6px);
   transition: all 0.3s;
}

.gallery-item:hover .gallery-label {
   opacity: 1;
   transform: none;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
#testimonials {
   display: none;
   /* TODO: unhide when testimonials are ready */
   background: var(--charcoal);
   color: var(--cream);
   overflow: hidden;
}

.testimonials-header {
   text-align: center;
   margin-bottom: 64px;
}

.testimonials-header .section-title {
   color: var(--cream);
}

.testimonials-header .tag {
   color: var(--clay);
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
}

.testimonial-card {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.08);
   padding: 40px 36px;
   border-radius: 2px;
   position: relative;
   transition: background 0.3s;
}

.testimonial-card:hover {
   background: rgba(255, 255, 255, 0.08);
}

.testimonial-quote-mark {
   font-family: var(--ff-display);
   font-size: 4rem;
   color: var(--clay);
   line-height: 1;
   margin-bottom: 16px;
   opacity: 0.6;
}

.testimonial-text {
   font-size: 0.98rem;
   line-height: 1.85;
   color: rgba(var(--cream-rgb), 0.8);
   margin-bottom: 28px;
   font-style: italic;
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 14px;
}

.testimonial-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   overflow: hidden;
   background: var(--clay);
   flex-shrink: 0;
}

.testimonial-avatar .img-placeholder {
   height: 44px;
}

.testimonial-name {
   font-weight: 500;
   font-size: 0.9rem;
}

.testimonial-role {
   font-size: 0.75rem;
   color: var(--stone);
   margin-top: 2px;
}

.testimonial-stars {
   position: absolute;
   top: 36px;
   right: 36px;
   color: var(--clay);
   font-size: 0.75rem;
   letter-spacing: 3px;
}

/* ─── PRICING ───────────────────────────────────────────────── */
#pricing {
   background: var(--cream);
}

.pricing-header {
   text-align: center;
   margin-bottom: 64px;
}

.pricing-subtitle {
   margin: 16px auto 0;
   text-align: center;
}

.pricing-pillars {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2px;
   margin-bottom: 48px;
}

.pricing-pillar {
   background: var(--warm-white);
   padding: 44px 36px;
   transition: background 0.3s var(--ease-out);
}

.pricing-pillar:hover {
   background: var(--white);
}

.pricing-pillar-icon {
   width: 40px;
   height: 40px;
   color: var(--clay);
   margin-bottom: 22px;
}

.pricing-pillar-icon svg {
   width: 100%;
   height: 100%;
}

.pricing-pillar-title {
   font-family: var(--ff-display);
   font-size: 1.2rem;
   font-weight: 500;
   color: var(--charcoal);
   margin-bottom: 12px;
}

.pricing-pillar-desc {
   font-size: 0.9rem;
   line-height: 1.75;
   color: var(--stone);
}

.pricing-cta-block {
   background: var(--charcoal);
   border-radius: 2px;
   padding: 56px 60px;
}

.pricing-cta-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 48px;
}

.pricing-cta-text {
   flex: 1;
}

.pricing-cta-eyebrow {
   font-size: 0.72rem;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--clay);
   margin-bottom: 12px;
}

.pricing-cta-heading {
   font-family: var(--ff-display);
   font-size: 1.6rem;
   font-weight: 500;
   color: var(--cream);
   line-height: 1.25;
   margin-bottom: 14px;
}

.pricing-cta-body {
   font-size: 0.92rem;
   line-height: 1.8;
   color: rgba(var(--cream-rgb), 0.6);
   max-width: 480px;
}

/* ─── PROCESS ───────────────────────────────────────────────── */
#process {
   background: var(--cream);
   overflow: hidden;
}

.process-header {
   text-align: center;
   max-width: 600px;
   margin: 0 auto 80px;
}

.process-header .divider {
   margin: 20px auto;
}

.process-track {
   position: relative;
   display: flex;
   flex-direction: column;
   max-width: 900px;
   margin: 0 auto;
}

.process-track::before {
   content: '';
   position: absolute;
   left: 50%;
   top: 0;
   bottom: 0;
   width: 1px;
   background: var(--border);
   transform: translateX(-50%);
}

.process-step {
   display: grid;
   grid-template-columns: 1fr 80px 1fr;
   align-items: start;
   padding-bottom: 56px;
}

.process-step:last-child {
   padding-bottom: 0;
}

.process-step:nth-child(odd) .step-content {
   grid-column: 1;
   text-align: right;
   padding-right: 48px;
   padding-top: 8px;
}

.process-step:nth-child(odd) .step-node {
   grid-column: 2;
}

.process-step:nth-child(odd) .step-spacer {
   grid-column: 3;
}

.process-step:nth-child(even) .step-spacer {
   grid-column: 1;
   grid-row: 1;
}

.process-step:nth-child(even) .step-node {
   grid-column: 2;
   grid-row: 1;
}

.process-step:nth-child(even) .step-content {
   grid-column: 3;
   grid-row: 1;
   text-align: left;
   padding-left: 48px;
   padding-top: 8px;
}

.step-node {
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
   z-index: 1;
}

.step-node-circle {
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: var(--warm-white);
   border: 2px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: border-color 0.3s, background 0.3s;
}

.process-step:hover .step-node-circle {
   border-color: var(--clay);
   background: var(--clay);
}

.step-node-number {
   font-family: var(--ff-display);
   font-size: 1.1rem;
   font-weight: 500;
   color: var(--clay);
   transition: color 0.3s;
   line-height: 1;
}

.process-step:hover .step-node-number {
   color: var(--white);
}

.step-label {
   font-size: 0.7rem;
   font-weight: 500;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--clay);
   margin-bottom: 8px;
}

.step-title {
   font-family: var(--ff-display);
   font-size: 1.4rem;
   font-weight: 500;
   color: var(--charcoal);
   margin-bottom: 14px;
   line-height: 1.25;
}

.step-desc {
   font-size: 0.92rem;
   line-height: 1.82;
   color: var(--stone);
   max-width: 380px;
}

.process-step:nth-child(odd) .step-desc {
   margin-left: auto;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
#faq {
   background: var(--warm-white);
}

.faq-grid {
   display: grid;
   grid-template-columns: 1fr 1.6fr;
   gap: 100px;
   align-items: start;
}

.faq-sidebar {
   position: sticky;
   top: 120px;
}

.faq-subtitle {
   margin-top: 0;
}

.faq-cta {
   margin-top: 32px;
}

.faq-list {
   display: flex;
   flex-direction: column;
}

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

.faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 0;
   font-size: 0.95rem;
   font-weight: 500;
   cursor: pointer;
   gap: 20px;
   transition: color 0.2s;
}

.faq-question:hover {
   color: var(--clay);
}

.faq-toggle {
   width: 24px;
   height: 24px;
   border-radius: 50%;
   border: 1.5px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: all 0.3s;
}

.faq-item.open .faq-toggle {
   background: var(--clay);
   border-color: var(--clay);
   color: var(--white);
   transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
   max-height: 300px;
}

.faq-answer-inner {
   padding: 0 0 24px;
   font-size: 0.9rem;
   line-height: 1.8;
   color: var(--stone);
}

/* ─── CONTACT ───────────────────────────────────────────────── */
#contact {
   background: var(--cream);
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1.3fr;
   gap: 80px;
   align-items: start;
}

.contact-subtitle {
   margin-bottom: 48px;
}

.contact-info-item {
   display: flex;
   gap: 18px;
   margin-bottom: 32px;
}

.contact-icon {
   width: 44px;
   height: 44px;
   border: 1px solid var(--border);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: var(--clay);
}

.contact-icon svg {
   width: 18px;
   height: 18px;
}

.contact-label {
   font-size: 0.72rem;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--stone);
   margin-bottom: 4px;
}

.contact-value {
   font-size: 0.95rem;
   color: var(--charcoal);
}

.contact-form {
   background: var(--warm-white);
   border: 1px solid var(--border);
   padding: 48px 44px;
   border-radius: 2px;
}

/* ─── CONTACT CHECKLIST (replaces contact-form) ────────────── */
.contact-checklist {
   background: var(--warm-white);
   border: 1px solid var(--border);
   padding: 48px 44px;
   border-radius: 2px;
}

.checklist-heading {
   font-family: var(--ff-display);
   font-size: clamp(1.35rem, 2.4vw, 1.7rem);
   font-weight: 500;
   line-height: 1.3;
   color: var(--charcoal);
   margin: 6px 0 16px;
}

.checklist-intro {
   font-size: 0.92rem;
   line-height: 1.7;
   color: var(--stone);
   margin-bottom: 32px;
}

.checklist-group {
   margin-bottom: 28px;
   padding-bottom: 28px;
   border-bottom: 1px solid var(--border);
}

.checklist-group:last-of-type {
   border-bottom: none;
   margin-bottom: 32px;
   padding-bottom: 0;
}

.checklist-group-title {
   font-size: 0.72rem;
   font-weight: 600;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--clay);
   margin-bottom: 16px;
}

.checklist-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.checklist-item {
   position: relative;
   padding-left: 22px;
   font-size: 0.92rem;
   line-height: 1.6;
   color: var(--charcoal);
}

.checklist-item::before {
   content: '';
   position: absolute;
   left: 0;
   top: 7px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--clay);
}

.contact-cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
}

.contact-cta-row .btn {
   flex: 1 1 200px;
   justify-content: center;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 18px;
}

.form-row--csz {
   grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 20px;
}

.form-group.full {
   grid-column: span 2;
}

.form-group--checkboxes {
   margin-bottom: 24px;
}

.form-label {
   font-size: 0.75rem;
   font-weight: 500;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   color: var(--stone);
}

.form-label--spaced {
   margin-bottom: 14px;
}

.form-required {
   color: var(--clay);
}

.form-input,
.form-select,
.form-textarea {
   width: 100%;
   padding: 13px 16px;
   border: 1.5px solid var(--border);
   border-radius: 2px;
   font-family: var(--ff-body);
   font-size: 0.9rem;
   color: var(--charcoal);
   background: var(--warm-white);
   transition: border-color 0.25s;
   outline: none;
   appearance: none;
   -webkit-appearance: none;
}

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

.form-footnote {
   font-size: 0.75rem;
   color: var(--stone);
   text-align: center;
   margin-top: 16px;
}

.checkbox-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px 20px;
}

.checkbox-item {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   font-size: 0.88rem;
   color: var(--charcoal);
   cursor: pointer;
   line-height: 1.4;
}

.checkbox-item--full {
   grid-column: span 2;
}

.checkbox-item input[type="checkbox"] {
   position: absolute;
   opacity: 0;
   width: 0;
   height: 0;
}

.checkbox-box {
   flex-shrink: 0;
   width: 17px;
   height: 17px;
   border: 1.5px solid var(--border);
   border-radius: 3px;
   background: var(--warm-white);
   transition: all 0.2s;
   margin-top: 1px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-box {
   background: var(--clay);
   border-color: var(--clay);
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-box::after {
   content: '';
   display: block;
   width: 4px;
   height: 7px;
   border: 1.5px solid var(--white);
   border-top: none;
   border-left: none;
   transform: rotate(45deg) translate(-1px, -1px);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
   background: var(--charcoal);
   color: var(--cream);
   padding: 64px 0 40px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 2fr 0.75fr 1fr;
   gap: 60px;
   margin-bottom: 56px;
}

.footer-logo {
   font-family: var(--ff-display);
   font-size: 1.3rem;
   font-weight: 500;
   margin-bottom: 16px;
}

.footer-logo span {
   color: var(--clay);
   font-style: italic;
}

.footer-tagline {
   font-size: 0.88rem;
   line-height: 1.7;
   color: rgba(var(--cream-rgb), 0.5);
   max-width: 240px;
   margin-bottom: 28px;
}

.footer-col-title {
   font-size: 0.72rem;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--clay);
   margin-bottom: 20px;
}

.footer-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-links--2col {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px 24px;
}

.footer-links a {
   font-size: 0.88rem;
   color: rgba(var(--cream-rgb), 0.6);
   transition: color 0.2s;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

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

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   padding-top: 28px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.footer-copy,
.footer-license {
   font-size: 0.78rem;
   color: rgba(var(--cream-rgb), 0.35);
}

.footer-location-note {
   color: rgba(var(--cream-rgb), 0.3);
   font-size: 0.78rem;
   margin-top: 8px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
   #hero {
      grid-template-columns: 1fr;
      min-height: auto;
   }

   .hero-left {
      padding: 260px 40px 60px;
   }

   .hero-right {
      height: 55vw;
      min-height: 340px;
   }

   .about-grid {
      gap: 50px;
   }

   .about-img-accent {
      display: none;
   }

   .about-quote {
      display: none;
   }

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

   .pricing-pillars {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
   }
}

@media (max-width: 768px) {
   .container {
      padding: 0 20px;
   }

   /* Nav */
   .nav-links {
      display: none;
   }

   .nav-links.nav-open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(var(--cream-rgb), 0.98);
      backdrop-filter: blur(12px);
      padding: 24px 32px;
      gap: 20px;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(var(--charcoal-rgb), 0.08);
      z-index: 99;
   }

   .hamburger {
      display: flex;
   }

   .hamburger.is-active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
   }

   .hamburger.is-active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
   }

   .hamburger.is-active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
   }

   /* Hero */
   #hero {
      grid-template-columns: 1fr;
   }

   .hero-left {
      padding: 260px 20px 60px;
   }

   .hero-stats {
      gap: 24px;
   }

   .hero-badge {
      display: none;
   }

   /* About */
   .about-grid {
      grid-template-columns: 1fr;
   }

   .about-content {
      padding-right: 0;
   }

   /* Services */
   .services-header {
      grid-template-columns: 1fr;
      gap: 24px;
   }

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

   /* Gallery */
   .gallery-item-1 {
      grid-column: span 12;
      height: 260px;
   }

   .gallery-item-2 {
      grid-column: span 12;
      height: 220px;
   }

   .gallery-item-3,
   .gallery-item-4,
   .gallery-item-5 {
      grid-column: span 12;
      height: 200px;
   }

   /* Testimonials */
   .testimonials-grid {
      grid-template-columns: 1fr;
   }

   /* Pricing */
   .pricing-pillars {
      grid-template-columns: 1fr;
   }

   .pricing-cta-block {
      padding: 40px 28px;
   }

   .pricing-cta-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
   }

   /* Process */
   .process-track::before {
      left: 28px;
   }

   .process-step {
      grid-template-columns: 56px 1fr;
      padding-bottom: 44px;
   }

   .process-step:nth-child(odd) .step-content,
   .process-step:nth-child(even) .step-content {
      grid-column: 2;
      grid-row: 1;
      text-align: left;
      padding: 8px 0 0;
   }

   .process-step:nth-child(odd) .step-node,
   .process-step:nth-child(even) .step-node {
      grid-column: 1;
      grid-row: 1;
   }

   .process-step .step-spacer {
      display: none;
   }

   .process-step:nth-child(odd) .step-desc {
      margin-left: 0;
   }

   .step-desc {
      max-width: 100%;
   }

   /* FAQ */
   .faq-grid {
      grid-template-columns: 1fr;
      gap: 48px;
   }

   .faq-sidebar {
      position: static;
   }

   /* Contact */
   .contact-grid {
      grid-template-columns: 1fr;
   }

   .contact-form {
      padding: 32px 24px;
   }

   .contact-checklist {
      padding: 32px 24px;
   }

   .contact-cta-row {
      flex-direction: column;
   }

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

   .form-group.full {
      grid-column: span 1;
   }

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

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

   .checkbox-item--full {
      grid-column: span 1;
   }

   /* Footer */
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .footer-links--2col {
      grid-template-columns: 1fr;
   }
}