:root {
    --rose: #FB7185;
    --rose-light: #fda4af;
    --rose-deep: #e11d48;
    --rose-pale: #fff1f2;
    --rose-mid: #fecdd3;
    --ink: #0f0d0b;
    --ink2: #1a1714;
    --ink3: #2a2520;
    --olive: #6b7c3f;
    --olive-dark: #4a5a28;
    --beige: #f5f2ea;
    --parchment: #faf8f4;
    --charcoal: #2d2d2d;
    --stone: #8a8070;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--beige);
    color: var(--ink);
    overflow-x: hidden;
}

/* ============================
   NAVBAR — Dual Color Split
   ============================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: stretch;
    height: 88px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-left {
    background: var(--ink);
    display: flex;
    align-items: center;
    padding: 0 32px 0 28px;
    flex: 1;
    gap: 40px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    padding-right: 60px;
}

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

.nav-logo--icononly {
    gap: 0;
}

.nav-logo--icononly .nav-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.nav-logo-img {
    width: 92px;
    height: 92px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(251, 113, 133, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-logo--icononly:hover .nav-logo-img {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(251, 113, 133, 0.32);
}

.nav-logo--icononly:hover .nav-logo-icon {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(251, 113, 133, 0.32);
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--rose);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--white);
    box-shadow: 0 8px 18px rgba(251, 113, 133, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.nav-logo-text span {
    color: var(--rose);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-right {
    background: var(--rose);
    display: flex;
    align-items: center;
    padding: 0 28px 0 36px;
    gap: 20px;
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -1px;
}

.nav-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-cta-btn {
    background: var(--white);
    color: var(--rose-deep);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.nav-cta-btn:hover {
    background: var(--ink);
    color: var(--rose-light);
}

/* ============================
   HERO — Washi Tape Assembly
   ============================ */
#hero {
    min-height: 100vh;
    background: var(--beige);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(251, 113, 133, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 124, 63, 0.05) 0%, transparent 40%);
    position: relative;
    padding-top: 68px;
    overflow: hidden;
}

.washi-board {
    position: relative;
    min-height: calc(100vh - 68px);
    width: 100%;
    padding: 40px 60px;
}

/* Washi tape mixin */
.washi-tape {
    position: absolute;
    height: 18px;
    width: 70px;
    opacity: 0.75;
    border-radius: 2px;
}

/* Element 1: Main headline paper */
.hero-headline-paper {
    position: absolute;
    top: 60px;
    left: 8%;
    width: 480px;
    background: #fffef9;
    box-shadow: 4px 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 44px 40px 40px;
    z-index: 3;
}

.wt-h1-a {
    background: rgba(251, 113, 133, 0.5);
    top: -8px;
    left: 30px;
    transform: rotate(-35deg);
    width: 80px;
}

.wt-h1-b {
    background: rgba(107, 124, 63, 0.45);
    bottom: -8px;
    right: 40px;
    transform: rotate(-35deg);
    width: 80px;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 20px;
}

.hero-h1 em {
    color: var(--rose);
    font-style: normal;
    display: block;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: #5a5248;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose);
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.25s;
}

.hero-btn:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
}

/* Element 2: Photo print portrait */
.hero-photo-1 {
    position: absolute;
    top: 40px;
    right: 12%;
    width: 280px;
    height: 340px;
    background: #f0ede5;
    border: 16px solid white;
    box-shadow: 3px 6px 20px rgba(0, 0, 0, 0.25);
    transform: rotate(-1.5deg);
    z-index: 4;
    overflow: hidden;
}

.hero-photo-1 img,
.hero-photo-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Washi on photo 1 */
.wt-p1 {
    position: absolute;
    background: rgba(251, 113, 133, 0.55);
    height: 18px;
    width: 80px;
    top: -4px;
    left: -16px;
    transform: rotate(-35deg);
    border-radius: 2px;
    z-index: 5;
}

/* Car SVG placeholder */
.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8d5d8 0%, #d4b8bc 100%);
    gap: 12px;
}

.photo-placeholder svg {
    opacity: 0.6;
}

.photo-placeholder span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--ink3);
    opacity: 0.5;
    text-transform: uppercase;
}

/* Element 3: Photo print landscape */
.hero-photo-2 {
    position: absolute;
    bottom: 80px;
    right: 6%;
    width: 320px;
    height: 220px;
    background: #f0ede5;
    border: 16px solid white;
    box-shadow: 3px 6px 20px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
    z-index: 2;
    overflow: hidden;
}

.wt-p2 {
    position: absolute;
    background: rgba(107, 124, 63, 0.5);
    height: 18px;
    width: 80px;
    top: -4px;
    left: -16px;
    transform: rotate(-35deg);
    border-radius: 2px;
    z-index: 5;
}

.photo-placeholder-2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c8d5b8 0%, #b0bc98 100%);
    gap: 10px;
}

/* Element 4: Sticky note tagline */
.hero-sticky {
    position: absolute;
    bottom: 120px;
    left: 32%;
    width: 240px;
    background: #fef9c3;
    padding: 24px 20px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    transform: rotate(1.8deg);
    z-index: 3;
}

.hero-sticky p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: #4a3f2f;
    line-height: 1.5;
}

.wt-sticky {
    position: absolute;
    background: rgba(180, 160, 60, 0.5);
    height: 18px;
    width: 70px;
    top: -8px;
    right: 20px;
    transform: rotate(-35deg);
    border-radius: 2px;
}

/* Element 5: Info card */
.hero-info-card {
    position: absolute;
    bottom: 80px;
    left: 6%;
    background: white;
    border: 1px solid rgba(251, 113, 133, 0.3);
    padding: 20px 24px;
    z-index: 3;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.08);
}

.wt-ic {
    position: absolute;
    background: rgba(251, 113, 133, 0.4);
    height: 18px;
    width: 70px;
    top: -8px;
    left: 20px;
    transform: rotate(-35deg);
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 28px;
    height: 28px;
    background: var(--rose-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.info-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--ink);
    line-height: 1.4;
}

/* Element 6: CTA stamp */
.hero-stamp {
    position: absolute;
    top: 30%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.stamp-circle {
    width: 110px;
    height: 110px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(251, 113, 133, 0.5), inset 0 0 0 4px rgba(255, 255, 255, 0.3), inset 0 0 0 6px var(--rose);
    text-decoration: none;
    transition: transform 0.2s;
    position: relative;
    overflow: visible;
    cursor: pointer;
}

.stamp-circle:hover {
    transform: scale(1.08) rotate(-3deg);
}

.stamp-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: white;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.2;
}

/* Decorative tape accents */
.tape-accent-1 {
    position: absolute;
    top: 200px;
    left: 42%;
    width: 140px;
    height: 18px;
    background: rgba(107, 124, 63, 0.3);
    transform: rotate(-35deg);
    border-radius: 2px;
}

.tape-accent-2 {
    position: absolute;
    bottom: 200px;
    left: 36%;
    width: 90px;
    height: 18px;
    background: rgba(210, 190, 140, 0.5);
    transform: rotate(20deg);
    border-radius: 2px;
}

/* ============================
   ABOUT US
   ============================ */
#about {
    background: var(--ink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-zone {
    position: relative;
}

.about-main-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #3a2a2e 0%, #2a1a1e 100%);
    border: 3px solid rgba(251, 113, 133, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-main-img .img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--rose);
    padding: 24px 28px;
    z-index: 2;
}

.about-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: white;
    line-height: 1;
}

.about-stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 4px;
}

.about-feat-card {
    position: absolute;
    top: 24px;
    left: -24px;
    background: var(--ink2);
    border: 1px solid rgba(251, 113, 133, 0.25);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-icon {
    width: 36px;
    height: 36px;
    background: rgba(251, 113, 133, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.feat-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.feat-text strong {
    display: block;
    color: var(--rose-light);
    font-size: 13px;
}

.about-content {
    color: white;
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 0.95;
    margin-bottom: 28px;
}

.about-content .section-title {
    color: white;
}

.about-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--rose);
    transition: background 0.2s;
}

.about-feat-item:hover {
    background: rgba(251, 113, 133, 0.08);
}

.afi-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.afi-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
}

.afi-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ============================
   SERVICES — Rotary Dial (Main)
   ============================ */
#services {
    background: var(--ink2);
    padding: 100px 0;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.services-header .section-title {
    color: white;
}

.rotary-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.dial-container {
    position: relative;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
}

.dial-face {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--rose);
    background: radial-gradient(circle at 30% 30%, #2a2320, #0f0d0b);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 60px rgba(251, 113, 133, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.dial-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1a1714, #0f0d0b);
    border: 2px solid rgba(251, 113, 133, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dial-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--rose);
    user-select: none;
}

/* Dial notches */
.dial-notch {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.notch-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.notch-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(251, 113, 133, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.notch-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-align: center;
}

/* Selector notch */
.dial-selector {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 18px solid var(--rose);
    z-index: 10;
}

/* Dial arrows */
.dial-arrows {
    display: flex;
    gap: 16px;
}

.dial-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(251, 113, 133, 0.5);
    border-radius: 50%;
    background: transparent;
    color: var(--rose);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dial-arrow:hover {
    background: var(--rose);
    color: white;
}

/* Service Info Panel */
.service-info-panel {
    color: white;
    min-height: 400px;
    position: relative;
}

.sip-inner {
    opacity: 1;
    transition: opacity 0.3s;
}

.sip-inner.fade-out {
    opacity: 0;
}

.sip-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--rose);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.sip-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 56px);
    color: white;
    line-height: 0.95;
    margin-bottom: 20px;
}

.sip-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.sip-img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
    margin-bottom: 16px;
    display: block;
    background: linear-gradient(135deg, #3a2a2e, #2a1a1e);
    position: relative;
    overflow: hidden;
}

.sip-thumb-img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a2010, #100f0a);
    border: 1px solid rgba(251, 113, 133, 0.15);
}

.sip-img-placeholder {
    width: 300px;
    height: 220px;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2a2020, #1a1010);
    border: 1px solid rgba(251, 113, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.sip-thumb {
    width: 160px;
    height: 120px;
    background: linear-gradient(135deg, #1a2010, #100f0a);
    border: 1px solid rgba(251, 113, 133, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.sip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.sip-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(251, 113, 133, 0.4);
    color: var(--rose-light);
    border-radius: 2px;
}

.sip-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose);
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 24px;
    text-decoration: none;
    transition: all 0.2s;
}

.sip-cta:hover {
    background: var(--rose-deep);
}

/* ============================
   SERVICE AREA — 30 Cities
   ============================ */
#service-area {
    background: var(--parchment);
    padding: 100px 0;
}

.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.sa-header {
    text-align: center;
    margin-bottom: 60px;
}

.sa-cities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(251, 113, 133, 0.2);
}

.city-item {
    padding: 20px 24px;
    border-right: 1px solid rgba(251, 113, 133, 0.15);
    border-bottom: 1px solid rgba(251, 113, 133, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s;
    cursor: default;
}

.city-item:hover {
    background: rgba(251, 113, 133, 0.06);
}

.city-item:nth-child(5n) {
    border-right: none;
}

.city-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    margin-bottom: 6px;
}

.city-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
}

.city-state {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--stone);
    text-transform: uppercase;
}

/* ============================
   ADDITIONAL SERVICES — Deconstructed Infographic
   ============================ */
#additional-services {
    background: var(--parchment);
    padding: 100px 0;
    position: relative;
}

.as-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.infographic-service {
    position: relative;
    padding: 60px 0;
}

.infographic-service+.infographic-service {
    border-top: 1px solid rgba(107, 124, 63, 0.2);
}

.infographic-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--olive);
}

.infographic-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--olive);
    margin-bottom: 0;
}

.infographic-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.infographic-layout.reverse {
    flex-direction: row-reverse;
}

.infographic-layout.offset {
    padding-top: 40px;
}

.big-stat {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 96px;
    color: var(--rose);
    line-height: 0.9;
    flex-shrink: 0;
    align-self: center;
}

.donut-chart {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
    position: relative;
}

.infographic-text {
    flex: 1;
    min-width: 200px;
}

.infographic-svc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1;
}

.infographic-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4540;
    margin-bottom: 16px;
}

.infographic-img {
    width: 220px;
    height: 280px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    background: linear-gradient(135deg, #e8d5d8, #d4b8bc);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.ba-img {
    width: 160px;
    height: 120px;
    background: linear-gradient(135deg, #d8d0c8, #c8c0b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    overflow: hidden;
}

.ba-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 4px;
    text-transform: uppercase;
}

.ba-sep {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--stone);
}

/* ============================
   WHY CHOOSE US
   ============================ */
#why-us {
    background: var(--rose);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px);
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.why-header {
    margin-bottom: 60px;
}

.why-header .section-title {
    color: white;
}

.why-header .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.why-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.12);
    position: absolute;
    top: 8px;
    right: 20px;
    line-height: 1;
}

.why-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: white;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================
   CTA SECTION
   ============================ */
#cta {
    background: var(--ink);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-rose {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.12) 0%, transparent 70%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 7vw, 88px);
    color: white;
    line-height: 0.92;
    margin-bottom: 24px;
}

.cta-title em {
    color: var(--rose);
    font-style: normal;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--rose);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    padding: 18px 48px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-3px);
}

.cta-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 32px;
    text-decoration: none;
    transition: all 0.25s;
}

.cta-btn-secondary:hover {
    border-color: var(--rose-light);
    color: var(--rose-light);
}

/* ============================
   FAQ
   ============================ */
#faq {
    background: var(--beige);
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.2;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rose);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-ans-text {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5248;
    padding-bottom: 24px;
}

/* ============================
   CONTACT
   ============================ */
#contact {
    background: var(--ink2);
    padding: 100px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    color: white;
}

.contact-info .section-title {
    color: white;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(251, 113, 133, 0.15);
    transition: border-color 0.2s;
}

.contact-item:hover {
    border-color: rgba(251, 113, 133, 0.4);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 6px;
}

.ci-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    text-decoration: none;
    display: block;
    line-height: 1.2;
}

.ci-value:hover {
    color: var(--rose-light);
}

.map-container {
    background: var(--ink3);
    border: 1px solid rgba(251, 113, 133, 0.2);
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

/* ============================
   FOOTER — Stacked Typographic
   ============================ */
footer {
    background: var(--ink);
    padding: 80px 0 40px;
    border-top: 4px solid var(--rose);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    margin-bottom: 60px;
}

.footer-brand {
    margin-bottom: 48px;
}

.footer-logo-img {
    width: clamp(84px, 12vw, 130px);
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(251, 113, 133, 0.28);
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 48px;
}

.footer-col-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(22px, 2.5vw, 30px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.footer-nav-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-links a:hover {
    color: var(--rose-light);
}

.footer-contact-item {
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact-item strong {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-bottom: 2px;
}

.footer-belief {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    text-align: justify;
}

.footer-rule {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    border: none;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-badge {
    background: var(--rose);
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-logo-text {
        font-size: 13px;
    }

    .nav-phone {
        font-size: 16px;
    }

    .hero-headline-paper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 20px;
    }

    .hero-photo-1,
    .hero-photo-2,
    .hero-sticky,
    .hero-info-card,
    .hero-stamp,
    .tape-accent-1,
    .tape-accent-2 {
        display: none;
    }

    .washi-board {
        padding: 20px;
    }

    .about-container,
    .rotary-section,
    .footer-cols,
    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .sa-cities {
        grid-template-columns: repeat(2, 1fr);
    }

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