/* ============================================
   READER'S TERMINAL — STYLESHEET
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #0e0c0a;
    --bg-warm: #1a1410;
    --glass: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.08);
    --forest: #2f5d3a;
    --olive: #6b8e23;
    --sand: #a67c52;
    --beige: #e8d9c5;
    --text-primary: #f3efe9;
    --text-secondary: #b8b2a8;
    --gradient-nature: linear-gradient(135deg, #2f5d3a, #a67c52);
    --gradient-earth: linear-gradient(135deg, #6b8e23, #e8d9c5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

ul, ol {
    list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

em {
    font-style: italic;
    color: var(--beige);
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.container-narrow {
    max-width: 800px;
}

/* --- SECTION --- */
.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--olive);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-desc {
    max-width: 600px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.section-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: rgba(14, 12, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(47, 93, 58, 0.15);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(14, 12, 10, 0.9);
    border-bottom: 1px solid rgba(47, 93, 58, 0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 10;
}

.logo-icon {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
}

.logo-icon-svg {
    display: block;
    color: inherit;
}

.nav-list {
    display: flex;
    /* Narrower than the base's 36px: this site's nav carries 7 links (vs. the base's 5)
       for the extra Genres/Start Here routes, so the gap is tightened to fit at desktop width. */
    gap: 22px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-nature);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.open {
    pointer-events: all;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.mobile-menu.open .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-warm);
    border-left: 1px solid var(--glass-border);
    padding: 80px 40px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    padding: 12px 0;
    color: var(--text-secondary);
    transition: color var(--transition);
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav a:hover {
    color: var(--text-primary);
}

.mobile-cta {
    margin-top: auto;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gradient-nature);
    color: #fff;
    box-shadow: 0 4px 20px rgba(47, 93, 58, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(47, 93, 58, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--sand);
    color: var(--beige);
    background: rgba(166, 124, 82, 0.08);
}

.btn-text {
    background: none;
    padding: 0;
    color: var(--sand);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--beige);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    transform: scale(1.1);
    will-change: transform;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 12, 10, 0.5) 0%,
        rgba(14, 12, 10, 0.7) 50%,
        rgba(14, 12, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 20px 80px;
}

.hero-tag-icon {
    display: inline-block;
    vertical-align: -2px;
    color: inherit;
    margin-right: 2px;
}

.hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--olive);
    margin-bottom: 1.5rem;
    padding: 8px 20px;
    background: rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.2);
    border-radius: 100px;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 7vw, 5rem);
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: clamp(30px, 4vw, 60px);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--beige);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--sand);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.about-layout.reverse {
    direction: rtl;
}

.about-layout.reverse > * {
    direction: ltr;
}

.about-visual {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-warm);
    border: 1px solid var(--glass-border);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--beige);
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--beige);
    font-weight: 400;
    line-height: 1.7;
}

.about-text .btn-text {
    margin-top: 1rem;
    display: inline-block;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-warm);
}

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

.service-row {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(30px, 4vw, 50px) 0;
    border-bottom: 1px solid var(--glass-border);
    transition: background var(--transition);
}

.service-row:first-child {
    border-top: 1px solid var(--glass-border);
}

.service-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--sand);
    opacity: 0.5;
    min-width: 40px;
    padding-top: 4px;
}

.service-icon {
    min-width: 40px;
    padding-top: 2px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.service-content p {
    max-width: 600px;
}

.service-link {
    white-space: nowrap;
    align-self: center;
}

/* ============================================
   SHOWCASE
   ============================================ */
.showcase {
    background: var(--bg-deep);
}

.showcase-gallery {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 auto;
    max-width: 1600px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
}

.showcase-img-wrap {
    position: relative;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-img {
    transform: scale(1.03);
}

.showcase-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.label-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.label-type {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.showcase-cta {
    text-align: center;
    padding-top: clamp(40px, 5vw, 60px);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    background: var(--bg-warm);
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 30px;
    padding: 0 0 50px;
}

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

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    background: rgba(47, 93, 58, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-line {
    width: 1px;
    flex: 1;
    background: var(--glass-border);
    margin-top: 12px;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content h3 {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
    background: var(--bg-deep);
}

.testimonial-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 60px clamp(20px, 4vw, 60px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--forest);
    opacity: 0.4;
    position: absolute;
    top: 20px;
    left: 40px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
}

.author-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--beige);
}

.author-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg-deep);
}

.cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(50px, 6vw, 80px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-nature);
}

.cta-desc {
    max-width: 500px;
    margin: 0 auto 2rem;
}

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

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
    background: var(--bg-warm);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-hero-sm {
    padding-bottom: clamp(40px, 5vw, 60px);
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
}

.page-hero-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* ============================================
   VALUES
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 50px);
}

.value-item {
    padding: clamp(30px, 3vw, 40px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
}

.value-item:hover {
    border-color: rgba(47, 93, 58, 0.3);
}

.value-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* ============================================
   FULL IMAGE
   ============================================ */
.full-image {
    text-align: center;
}

.full-img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/8;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail {
    border-bottom: 1px solid var(--glass-border);
}

.service-detail:nth-child(even) {
    background: var(--bg-warm);
}

.feature-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--forest);
    border-radius: 1px;
}

/* ============================================
   DESIGNS
   ============================================ */
.design-feature {
    border-bottom: 1px solid var(--glass-border);
}

.design-feature:nth-child(even) {
    background: var(--bg-warm);
}

.design-hero-img {
    margin-bottom: clamp(30px, 4vw, 50px);
}

.design-hero-img .full-img {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
}

.design-info-header {
    margin-bottom: 2rem;
}

.design-subtitle {
    font-size: 1.05rem;
    color: var(--sand);
    font-weight: 500;
}

.design-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    opacity: 0;
}

.design-details.open {
    /* Raised from the base's 800px: our shelf-content blocks (What's Inside / Formats &
       Editions / Extras / Best For) run longer than the base's layout/materials/systems
       copy, especially in the single-column mobile layout. */
    max-height: 2200px;
    opacity: 1;
}

.design-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 2rem;
}

.detail-block h4 {
    color: var(--beige);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-block p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.design-price {
    padding: 24px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.design-price span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.design-price strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--beige);
}

.price-note {
    font-size: 0.8rem !important;
    opacity: 0.6;
}

.design-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

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

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.required {
    color: var(--sand);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 14px 18px;
    background: var(--glass);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(184, 178, 168, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: rgba(47, 93, 58, 0.05);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8b2a8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-warm);
    color: var(--text-primary);
}

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

.form-consent {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--glass-border);
    border-radius: 4px;
    background: var(--glass);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--forest);
    border-color: var(--forest);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    height: 100%;
}

.checkbox-label a {
    color: var(--sand);
    text-decoration: underline;
}

.form-submit {
    align-self: flex-start;
    width: 100%;
}

.form-success {
    padding: 20px 24px;
    background: rgba(47, 93, 58, 0.15);
    border: 1px solid rgba(47, 93, 58, 0.3);
    border-radius: var(--radius-sm);
    color: var(--olive);
    font-weight: 500;
}

.form-success[hidden] {
    display: none;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.info-block {
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.info-block address {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-block a {
    color: var(--sand);
    transition: color var(--transition);
}

.info-block a:hover {
    color: var(--beige);
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
    background: var(--bg-deep);
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1rem;
    padding-left: 0;
}

.legal-text li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    padding: 6px 0 6px 24px;
    position: relative;
}

.legal-text li::before {
    content: '·';
    position: absolute;
    left: 8px;
    color: var(--sand);
    font-weight: bold;
}

.legal-text a {
    color: var(--sand);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-warm);
    border-top: 1px solid var(--glass-border);
    padding: clamp(50px, 6vw, 80px) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(40px, 5vw, 80px);
    padding-bottom: clamp(40px, 4vw, 60px);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h4 {
    margin-bottom: 16px;
    color: var(--beige);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade {
    opacity: 0;
    transform: translateY(30px);
}

.anim-reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .about-layout.reverse {
        direction: ltr;
    }

    .about-visual {
        max-width: 600px;
    }

    .about-badge {
        bottom: 16px;
        right: 16px;
    }

    .service-row {
        flex-wrap: wrap;
    }

    .service-link {
        width: 100%;
        justify-content: flex-start;
        padding-left: 100px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .design-detail-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .hero-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    .showcase-img {
        height: 40vh;
        min-height: 280px;
    }

    .showcase-label {
        bottom: 20px;
        left: 20px;
    }

    .label-tag {
        font-size: 1.2rem;
    }

    .service-num {
        display: none;
    }

    .service-icon {
        display: none;
    }

    .service-link {
        padding-left: 0;
    }

    .cta-block {
        padding: 40px 24px;
    }

    .testimonial-block {
        padding: 40px 24px;
    }

    .quote-mark {
        position: static;
        font-size: 4rem;
        margin-bottom: -1rem;
    }

    .design-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .design-actions {
        flex-direction: column;
    }

    .design-actions .btn {
        width: 100%;
        text-align: center;
    }
}