/* ============================================
   Janets Income Tax — Brand Styles
   Palette: Terracotta (#C4613A) + Sand (#F5E6D3)
   ============================================ */

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

:root {
    --terracotta: #C4613A;
    --terracotta-dark: #A84E2D;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FBF5ED;
    --sand-dark: #E8D5BE;
    --cream: #FFFDF9;
    --charcoal: #2A2420;
    --charcoal-light: #4A403A;
    --warm-gray: #7A6E66;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(42,36,32,0.08);
    --shadow-md: 0 4px 16px rgba(42,36,32,0.10);
    --shadow-lg: 0 8px 32px rgba(42,36,32,0.12);
    --shadow-xl: 0 16px 48px rgba(42,36,32,0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.container--hero {
    max-width: 1320px;
}

.container--about {
    max-width: 1200px;
}

.container--contact {
    max-width: 1200px;
}

/* ============================================
   GEOMETRIC SHAPES (Background Decoration)
   ============================================ */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.geo-shape--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--sand);
    top: -100px;
    right: -100px;
}

.geo-shape--rect {
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    opacity: 0.06;
    top: 400px;
    left: -60px;
    transform: rotate(25deg);
    border-radius: var(--radius-lg);
}

.geo-shape--triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 140px 80px;
    border-color: transparent transparent var(--sand-dark) transparent;
    opacity: 0.4;
    top: 900px;
    right: 40px;
    transform: rotate(-15deg);
}

.geo-shape--dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--terracotta);
    opacity: 0.2;
    top: 600px;
    left: 60px;
}

.geo-shape--dot--md {
    width: 20px;
    height: 20px;
    top: 1400px;
    right: 80px;
    opacity: 0.15;
}

.geo-shape--dot--lg {
    width: 24px;
    height: 24px;
    top: 2000px;
    left: 100px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196, 97, 58, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

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

.logo__mark {
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo__mark--light {
    background: var(--white);
    color: var(--terracotta);
}

.logo--light .logo__text {
    color: var(--white);
}

.logo__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--charcoal);
}

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

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle__line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    display: block;
}

.nav-toggle.active .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--terracotta {
    background: var(--terracotta);
    color: var(--white);
}

.btn--terracotta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 97, 58, 0.3);
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--sand-dark);
}

.btn--outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--terracotta);
}

.btn--white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn--outline-terracotta {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn--outline-terracotta:hover {
    background: var(--terracotta);
    color: var(--white);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--terracotta);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 100px;
    padding-bottom: 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.container--hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--warm-gray);
    margin-bottom: 24px;
    background: var(--sand);
    padding: 8px 16px;
    border-radius: 100px;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero__headline-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta);
    font-size: 0.85em;
    margin-top: 8px;
}

.hero__subheadline {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal-light);
}

/* Hero Image Stack */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image-primary {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,97,58,0.15) 0%, transparent 60%);
    border-radius: var(--radius-xl);
}

.hero__image-secondary {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 55%;
    height: 35%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.hero__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__floating-card {
    position: absolute;
    bottom: 35%;
    left: 30%;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero__floating-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__floating-card-label {
    display: block;
    font-size: 0.72rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__floating-card-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

/* Hero Wave */
.hero__wave {
    position: relative;
    margin-top: -1px;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    opacity: 0.05;
    border-radius: 50%;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(196, 97, 58, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 97, 58, 0.15);
}

.service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover .service-card__accent {
    opacity: 1;
}

.service-card--featured {
    background: var(--charcoal);
    color: var(--white);
    border: none;
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card--featured .service-card__desc {
    color: rgba(255,255,255,0.7);
}

.service-card--featured .service-card__list li {
    color: rgba(255,255,255,0.6);
}

.service-card--featured .service-card__list li::before {
    color: var(--terracotta-light);
}

.service-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card--featured .service-card__icon {
    background: rgba(196, 97, 58, 0.2);
}

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

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__list li {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    padding-left: 18px;
    position: relative;
}

.service-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: 700;
    font-size: 0.8rem;
}

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

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

.about__visual {
    position: relative;
    height: 580px;
}

.about__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 55%;
    height: 40%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stats {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

.about__content {
    padding-left: 20px;
}

.about__body {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal-light);
}

.about__highlight svg {
    flex-shrink: 0;
    margin-top: 2px;
}

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

.geo-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.geo-block--left::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -120px;
    width: 300px;
    height: 300px;
    background: var(--sand);
    border-radius: 50%;
    opacity: 0.6;
}

.geo-block--left::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: var(--terracotta);
    opacity: 0.06;
    transform: rotate(30deg);
    border-radius: var(--radius-lg);
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.why-item__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--sand-dark);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
}

.why-item__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.why-item__desc {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.why-us__visual {
    position: relative;
    height: 600px;
}

.why-us__image {
    position: relative;
    width: 85%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us__image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,36,32,0.3), transparent 50%);
    border-radius: var(--radius-xl);
}

.why-us__quote-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    border-left: 4px solid var(--terracotta);
}

.why-us__quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 12px;
}

.why-us__quote-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: var(--terracotta);
    opacity: 0.15;
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: var(--sand);
    opacity: 0.05;
    border-radius: 50%;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    max-width: 600px;
}

.cta-banner__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

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

.contact__desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    margin-bottom: 4px;
}

.contact__detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact__link {
    color: var(--terracotta);
    font-weight: 500;
    transition: color var(--transition);
}

.contact__link:hover {
    color: var(--terracotta-dark);
}

/* Contact Form */
.contact__form-wrapper {
    position: relative;
}

.contact__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(196, 97, 58, 0.06);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact__form-subtitle {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196, 97, 58, 0.1);
}

.form-input::placeholder {
    color: var(--sand-dark);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6E66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.contact__form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.contact__form-success.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-success__icon {
    margin: 0 auto 16px;
    width: 72px;
    height: 72px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 0.92rem;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__links-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-light);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer__phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--terracotta-light);
    transition: color var(--transition);
}

.footer__phone:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container--hero {
        gap: 40px;
    }
    
    .hero__visual {
        height: 480px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us__inner {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .container--about,
    .container--contact {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__content {
        padding-left: 0;
    }
    
    .about__visual {
        height: 420px;
        order: -1;
    }
    
    .why-us__inner {
        grid-template-columns: 1fr;
    }
    
    .why-us__visual {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 999;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav a {
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(42,36,32,0.4);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .container--hero {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }
    
    .hero__visual {
        height: 380px;
        order: -1;
    }
    
    .hero__headline {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about__highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner__actions .btn {
        justify-content: center;
    }
    
    .contact__form-card {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .geo-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__image-stack {
        height: 300px;
    }
    
    .hero__image-primary {
        width: 100%;
        height: 100%;
    }
    
    .hero__image-secondary {
        display: none;
    }
    
    .hero__floating-card {
        left: 10%;
        bottom: 20%;
    }
    
    .about__visual {
        height: 320px;
    }
    
    .about__stats {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin-top: 16px;
        justify-content: center;
    }
    
    .why-us__visual {
        height: 300px;
    }
    
    .why-us__quote-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
    }
}
