/* =============================================
   CHANTRIERI - HEIRLOOM EDITORIAL
   Magazine-Style, Layered, Collected
   ============================================= */

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

:root {
    /* Aged, Warm Palette */
    --aged-ivory: #F5F1E8;
    --parchment: #EDE8DC;
    --warm-cream: #FAF8F3;
    --soft-charcoal: #3A3732;
    --antique-brown: #6B5D52;
    --wood-tone: #8B7355;
    
    /* Earth & Botanical */
    --moss-green: #7A8B6F;
    --olive-green: #8B9578;
    
    /* Soft Romantic */
    --dusty-rose: #C9A7A0;
    --muted-blush: #D4B5AF;
    --mauve: #B69B9F;
    
    /* Intentional Pops */
    --teal: #5A8C8C;
    --sapphire: #456B8C;
    --marigold: #D4A150;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--soft-charcoal);
    background: var(--aged-ivory);
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="4" fill="%233A3732" opacity="0.3"/></svg>') 10 10, auto;
}

a, button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="6" fill="%235A8C8C" opacity="0.4"/></svg>') 12 12, pointer;
}

/* Visible Paper Texture Overlay - More Tactile */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="5" /></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.08"/></svg>');
    pointer-events: none;
    opacity: 0.6;
    z-index: 9999;
    mix-blend-mode: multiply;
}

/* Additional subtle grain layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.01) 0px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    opacity: 0.3;
    z-index: 9998;
}

/* Typography - Tall, Graceful, Editorial Hierarchy */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.15;
    transform: scaleY(1.08); /* Tall, graceful letterforms */
    transform-origin: top;
}

h1 {
    font-size: clamp(4.5rem, 12vw, 10rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    letter-spacing: 0.025em;
}

h4 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0.03em;
}

p {
    font-size: 1.1rem;
    color: var(--antique-brown);
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

/* =============================================
   MINIMAL FLOATING NAVIGATION
   ============================================= */

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(58,55,50,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,241,232,0.08);
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    color: rgba(245,241,232,0.9);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
}

.nav-link {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: rgba(245,241,232,0.75);
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,161,80,0.8) 0%, rgba(212,161,80,0.2) 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: rgba(245,241,232,0.95);
    transform: translateY(-1px);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: rgba(245,241,232,0.9);
    transition: 0.3s;
}

/* =============================================
   HERO: FULL-BLEED EDITORIAL
   ============================================= */

.hero-editorial {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) grayscale(15%) sepia(4%) saturate(75%) contrast(110%) brightness(0.88);
    transition: transform 12s ease-out;
}

.hero-editorial:hover .hero-image {
    transform: scale(1.01);
}

.hero-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Modern minimal overlay - left focused */
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 20%,
        rgba(0,0,0,0.1) 40%,
        transparent 65%
    );
    mix-blend-mode: normal;
}

/* Elegant backdrop card behind hero content */
.hero-content-float {
    position: absolute;
    top: 55%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 10;
    position: relative;
}

.hero-content-float::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: -3rem;
    right: -3rem;
    bottom: -3rem;
    background: transparent;
    backdrop-filter: none;
    z-index: -1;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.hero-label {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.95);
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: none;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: rgba(245,241,232,0.98);
    text-shadow: none;
    position: relative;
    line-height: 1.15;
    letter-spacing: 0.01em;
    font-weight: 300;
    animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(245,241,232,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.65;
    text-shadow: none;
}

.hero-accent-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg, 
        rgba(212,161,80,0.8) 0%, 
        rgba(212,161,80,0.3) 100%
    );
    margin-bottom: 2rem;
    opacity: 1;
    border-radius: 0;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(245,241,232,0.9);
    font-weight: 400;
    text-shadow: none;
    letter-spacing: 0.01em;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
    opacity: 0.8;
}

.scroll-indicator span {
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.85);
    text-shadow: none;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        180deg, 
        rgba(245,241,232,0.9) 0%, 
        rgba(245,241,232,0.3) 100%
    );
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(8px);
    }
}

/* =============================================
   OPENING STATEMENT - ASYMMETRIC
   ============================================= */

.opening-statement {
    padding: 12rem 0 28rem;
    position: relative;
    background: var(--warm-cream);
    transition: background-color 0.6s ease;
}

/* Room transition effect */
.opening-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--moss-green) 50%, transparent 100%);
    opacity: 0.15;
}

.statement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6rem 0 12rem;
    position: relative;
    z-index: 10;
}

.statement-number {
    position: absolute;
    left: 6rem;
    top: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    color: var(--dusty-rose);
    opacity: 0.15;
    line-height: 1;
    font-style: italic;
}

.statement-heading {
    margin-bottom: 3rem;
    color: var(--soft-charcoal);
    font-weight: 300;
    position: relative;
    padding-bottom: 1.5rem;
}

.statement-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--moss-green) 0%, transparent 100%);
    opacity: 0.4;
}

.statement-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.statement-col p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Seamless addendum paragraph under What to Expect */
.statement-addendum {
    margin-top: 4rem;
    padding-top: 3rem;
    max-width: 72ch;
    position: relative;
}

/* Subtle editorial divider */
.statement-addendum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--dusty-rose) 0%, transparent 100%);
    opacity: 0.35;
}

.statement-addendum p {
    color: var(--antique-brown);
    font-size: 1.05rem;
    line-height: 2;
    letter-spacing: 0.01em;
}

.statement-addendum strong {
    font-weight: 600;
    color: var(--soft-charcoal);
    font-size: 1.08rem;
}

.statement-addendum em {
    color: var(--soft-charcoal);
    font-style: italic;
    font-size: 1.08rem;
    display: block;
    margin-top: 1.25rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--dusty-rose);
    opacity: 0.9;
}

.statement-image-float {
    position: absolute;
    right: 8%;
    bottom: 6rem;
    width: 380px;
    height: 480px;
    box-shadow: 
        0 20px 60px rgba(58,55,50,0.15),
        0 8px 20px rgba(58,55,50,0.08);
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: drift 4s ease-in-out infinite;
}

.statement-image-float:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 
        0 30px 80px rgba(58,55,50,0.2),
        0 12px 30px rgba(58,55,50,0.12);
}

.statement-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(8%) saturate(90%);
}

/* =============================================
   VISION - OVERLAPPING IMAGE + TEXT
   ============================================= */

.vision-overlap {
    padding: 16rem 0 14rem;
    position: relative;
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--parchment) 100%);
}

/* Subtle room divider */
.vision-overlap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--dusty-rose) 50%, transparent 100%);
    opacity: 0.3;
}

/* Decorative corner element */
.vision-overlap::after {
    content: '';
    position: absolute;
    top: 8rem;
    right: 4rem;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--moss-green) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.06;
}

.vision-image-large {
    position: absolute;
    left: 8%;
    top: 15%;
    width: 55%;
    height: 600px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-image-large:hover {
    transform: translateY(-12px) rotateY(-2deg) scale(1.02);
}

.vision-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) saturate(88%);
    box-shadow: 
        0 30px 80px rgba(58,55,50,0.18),
        0 10px 25px rgba(58,55,50,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-image-large:hover img {
    box-shadow: 
        0 40px 100px rgba(58,55,50,0.22),
        0 15px 35px rgba(58,55,50,0.14);
}

.vision-text-card {
    position: relative;
    margin-left: auto;
    margin-right: 8%;
    max-width: 520px;
    padding: 4rem 3.5rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(25px) saturate(1.1);
    box-shadow: 
        0 20px 60px rgba(58,55,50,0.12),
        0 5px 15px rgba(58,55,50,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-left: 3px solid var(--moss-green);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-text-card:hover {
    transform: translateY(-12px) rotateX(3deg);
    box-shadow: 
        0 30px 80px rgba(58,55,50,0.15),
        0 10px 25px rgba(58,55,50,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.card-label {
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--moss-green);
    margin-bottom: 2rem;
    opacity: 0.85;
    position: relative;
    padding-bottom: 1rem;
}

.card-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--moss-green) 0%, transparent 100%);
    opacity: 0.4;
}

.vision-text-card h3 {
    margin-bottom: 2rem;
    color: var(--soft-charcoal);
}

.vision-text-card p {
    margin-bottom: 1.5rem;
    line-height: 2;
}

/* =============================================
   FEATURED EXPERIENCE - DIAGONAL
   ============================================= */

.featured-experience {
    position: relative;
    padding: 14rem 0;
    background: var(--aged-ivory);
    overflow: hidden;
}

/* Section divider */
.featured-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
    opacity: 0.3;
}

.featured-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.featured-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(8%) saturate(92%);
}

.featured-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(245,241,232,0.9) 0%, rgba(245,241,232,0.3) 50%, transparent 80%);
}

.featured-content-diagonal {
    position: relative;
    max-width: 620px;
    margin-left: 10%;
    padding: 4rem 4rem 4rem 0;
    z-index: 10;
}

.featured-badge {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--sapphire) 100%);
    color: var(--warm-cream);
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(90,140,140,0.3),
        0 4px 12px rgba(90,140,140,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-glow 3s ease-in-out infinite;
}

.featured-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(90,140,140,0.4),
        0 10px 20px rgba(90,140,140,0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.featured-content-diagonal h2 {
    margin-bottom: 2rem;
    color: var(--soft-charcoal);
}

.featured-content-diagonal p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.1rem;
}

/* =============================================
   SERVICES - MAGAZINE EDITORIAL LAYOUT
   ============================================= */

.services-magazine {
    padding: 14rem 0;
    background: var(--warm-cream);
    position: relative;
}

/* Section divider */
.services-magazine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--moss-green) 50%, transparent 100%);
    opacity: 0.3;
}

/* Decorative element */
.services-magazine::after {
    content: '';
    position: absolute;
    bottom: 8rem;
    left: 4rem;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--dusty-rose) 1px, transparent 1px);
    background-size: 9px 9px;
    opacity: 0.06;
}

.section-intro-offset {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 8rem;
    position: relative;
}

.section-number {
    position: absolute;
    left: 3rem;
    top: -2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    color: var(--dusty-rose);
    opacity: 0.15;
    line-height: 1;
    font-style: italic;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--soft-charcoal);
    font-weight: 300;
    position: relative;
    padding-bottom: 1.5rem;
    animation: slideInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--marigold) 0%, transparent 100%);
    opacity: 0.4;
}

.section-description {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--antique-brown);
    line-height: 1.9;
    opacity: 0.9;
}

.service-layout-editorial {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
}

.service-card-editorial {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(58,55,50,0.08),
        0 3px 10px rgba(58,55,50,0.04);
    border: 1px solid rgba(122,139,111,0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.service-card-editorial:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card-editorial:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card-editorial:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card-editorial:hover {
    transform: translateY(-15px) rotateY(2deg);
    box-shadow: 
        0 35px 90px rgba(58,55,50,0.18),
        0 15px 35px rgba(58,55,50,0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);
    border-color: rgba(122,139,111,0.2);
}

.service-large {
    grid-row: span 2;
}

.service-image-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(6%) saturate(92%);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-editorial:hover .service-image-wrap img {
    transform: scale(1.05);
}

.service-image-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 0.6rem 1.2rem;
    background: rgba(245,241,232,0.95);
    backdrop-filter: blur(10px);
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-charcoal);
    box-shadow: 0 4px 16px rgba(58,55,50,0.1);
}

.service-text-content {
    padding: 3rem;
}

.service-text-content h3 {
    margin-bottom: 1.5rem;
    color: var(--soft-charcoal);
}

.service-text-content p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.service-emphasis {
    font-style: italic;
    color: var(--moss-green);
    font-weight: 500;
    margin-top: 2rem;
}

.service-sidebar {
    padding: 3rem;
    display: flex;
    align-items: center;
    border-left: 3px solid var(--teal);
}

.service-text-small {
    width: 100%;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--teal);
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-editorial:hover .service-icon {
    color: var(--sapphire);
    transform: scale(1.1);
}

.service-text-small h4 {
    margin-bottom: 1rem;
    color: var(--soft-charcoal);
    font-size: 1.35rem;
}

.service-text-small p {
    font-size: 1rem;
    line-height: 1.8;
}

.quality-statement {
    max-width: 900px;
    margin: 6rem auto 0;
    padding: 0 8rem;
    text-align: center;
    position: relative;
}

.quality-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--marigold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.quality-statement p {
    font-size: 1.1rem;
    line-height: 2;
    font-style: italic;
}

/* =============================================
   TEA PARTY - SETTING OPTIONS (EDITORIAL)
   ============================================= */

.tea-party-editorial {
    padding: 12rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--warm-cream) 100%);
    position: relative;
    overflow: hidden;
}

.tea-party-editorial::before {
    content: '';
    position: absolute;
    top: -18%;
    right: -10%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(200, 168, 130, 0.18) 0%, rgba(200, 168, 130, 0) 62%);
    pointer-events: none;
}

.tea-party-editorial::after {
    content: '';
    position: absolute;
    bottom: 7rem;
    left: 4rem;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, var(--dusty-rose) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.06;
    pointer-events: none;
}

.tea-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8rem;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 4.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
    perspective: 1200px;
}

.tea-text-card {
    position: relative;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(26, 26, 26, 0.075);
    border-left: 3px solid var(--marigold);
    box-shadow:
        0 28px 80px rgba(26, 26, 26, 0.10),
        0 10px 24px rgba(26, 26, 26, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.75);
    padding: 3.6rem 3.2rem;
    backdrop-filter: blur(18px) saturate(1.05);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.tea-text-card::before {
    content: '“';
    position: absolute;
    top: 1.8rem;
    left: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 5.2rem;
    line-height: 1;
    color: var(--dusty-rose);
    opacity: 0.18;
    pointer-events: none;
}

.tea-text-card:hover {
    transform: translateY(-10px) rotateX(2.5deg);
    box-shadow:
        0 38px 100px rgba(26, 26, 26, 0.14),
        0 14px 32px rgba(26, 26, 26, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.85);
}

.tea-text-card p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 2;
    color: var(--antique-brown);
    margin-bottom: 1.4rem;
}

.tea-text-card p:last-child {
    margin-bottom: 0;
}

.tea-visuals {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 240px;
    gap: 2.4rem;
    align-content: start;
    transform: translateY(-1.2rem);
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.tea-visuals::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, var(--marigold) 0%, transparent 100%);
    opacity: 0.35;
}

.tea-visuals::after {
    content: '';
    position: absolute;
    bottom: -1.8rem;
    right: -1.2rem;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--moss-green) 1px, transparent 1px);
    background-size: 9px 9px;
    opacity: 0.05;
    pointer-events: none;
}

.tea-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.10);
    box-shadow:
        0 40px 100px rgba(26, 26, 26, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.12);
    transform: rotate(-1.2deg) translateZ(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tea-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 2;
}

.tea-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tea-image--primary {
    grid-column: 1 / -1;
    grid-row: 1;
    transform: rotate(-1.1deg) translateZ(0);
}

.tea-image--secondary {
    grid-column: 1;
    grid-row: 2;
    transform: rotate(0.8deg) translateY(10px);
    box-shadow: 0 28px 70px rgba(26, 26, 26, 0.12);
}

.tea-image--tertiary {
    grid-column: 2;
    grid-row: 2;
    transform: rotate(-0.7deg) translateY(-8px);
    box-shadow: 0 28px 70px rgba(26, 26, 26, 0.12);
}

.tea-image img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: sepia(8%) saturate(92%) contrast(1.03);
}

.tea-image:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 56px 120px rgba(26, 26, 26, 0.18);
}

.tea-image:hover::after {
    opacity: 0.35;
}

.tea-image:hover img {
    transform: scale(1.10);
}

/* =============================================
   GALLERY - MASONRY SPREAD
   ============================================= */

.gallery-spread {
    padding: 14rem 0;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--aged-ivory) 50%, var(--warm-cream) 100%);
    position: relative;
}

/* Decorative corner flourish */
.gallery-spread::before {
    content: '';
    position: absolute;
    top: 8rem;
    left: 4rem;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--dusty-rose) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.08;
}

.gallery-spread::after {
    content: '';
    position: absolute;
    bottom: 8rem;
    right: 4rem;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--marigold) 50%, transparent 100%);
    opacity: 0.3;
}

.gallery-header-minimal {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 8rem;
    position: relative;
    text-align: center;
}

.gallery-header-minimal h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.gallery-header-minimal h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--moss-green) 50%, transparent 100%);
    opacity: 0.4;
}

.gallery-header-minimal p {
    font-style: italic;
    color: var(--antique-brown);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.gallery-masonry {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    grid-auto-flow: dense;
    perspective: 1200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(122,139,111,0.15);
    box-shadow: 
        0 12px 40px rgba(58,55,50,0.06),
        0 4px 12px rgba(58,55,50,0.03),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    animation: galleryItemFloat 3s ease-in-out infinite;
}

.gallery-item:nth-child(2n) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(3n) {
    animation-delay: 0.6s;
}

.gallery-item:nth-child(4n) {
    animation-delay: 0.9s;
}

/* Elegant corner accent */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, rgba(122,139,111,0.08) 50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Image number overlay */
.gallery-item::after {
    content: attr(data-number);
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--warm-cream);
    background: rgba(58,55,50,0.75);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.gallery-item:hover {
    transform: translateY(-15px) rotateX(5deg) rotateZ(1.5deg) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(58,55,50,0.18),
        0 15px 35px rgba(58,55,50,0.12),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(122,139,111,0.3);
    z-index: 20;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(6%) saturate(90%) contrast(97%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    filter: sepia(10%) saturate(110%) contrast(102%);
    transform: scale(1.08) rotate(0.5deg);
}

/* Subtle overlay on images */
.gallery-item img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(245,241,232,0.05) 0%,
        transparent 40%,
        rgba(58,55,50,0.03) 100%
    );
    pointer-events: none;
}

/* =============================================
   CONTACT - ASYMMETRIC EDITORIAL
   ============================================= */

.contact-editorial {
    padding: 12rem 0;
    background: var(--warm-cream);
    position: relative;
}

.contact-intro-float {
    max-width: 500px;
    margin-left: 8%;
    margin-bottom: 4rem;
    position: relative;
}

.contact-intro-float h2 {
    margin-bottom: 1.5rem;
}

.contact-intro-float p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--antique-brown);
    opacity: 0.7;
}

.contact-item a {
    color: var(--teal);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--sapphire);
}

.form-editorial-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,248,243,0.9) 100%);
    backdrop-filter: blur(30px) saturate(1.1);
    box-shadow: 
        0 40px 100px rgba(58,55,50,0.14),
        0 10px 30px rgba(58,55,50,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(122,139,111,0.12);
    position: relative;
}

/* Decorative corner accent */
.form-editorial-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--dusty-rose) 0%, var(--marigold) 50%, transparent 100%);
    opacity: 0.4;
}

.form-editorial-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(270deg, var(--teal) 0%, var(--moss-green) 50%, transparent 100%);
    opacity: 0.4;
}

.form-editorial-wrap h3 {
    margin-bottom: 1rem;
    color: var(--soft-charcoal);
    font-weight: 300;
    font-style: italic;
}

.form-editorial-wrap h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--marigold) 0%, transparent 100%);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.form-toggle {
    display: inline-flex;
    gap: 0.8rem;
    padding: 0.6rem;
    border: 1px solid rgba(122,139,111,0.14);
    background: rgba(255,255,255,0.55);
    box-shadow: 0 10px 26px rgba(58,55,50,0.06);
    margin-bottom: 3rem;
}

.form-toggle-btn {
    appearance: none;
    border: 1px solid rgba(58,55,50,0.12);
    background: rgba(245,241,232,0.75);
    color: var(--soft-charcoal);
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(58,55,50,0.10);
    border-color: rgba(90,140,140,0.25);
}

.form-toggle-btn.is-active {
    background: linear-gradient(135deg, var(--teal) 0%, var(--sapphire) 100%);
    color: var(--warm-cream);
    border-color: rgba(255,255,255,0.2);
    box-shadow:
        0 18px 46px rgba(90,140,140,0.22),
        inset 0 1px 0 rgba(255,255,255,0.18);
}

.form-toggle-btn:focus {
    outline: none;
}

.form-panel {
    animation: fadeInScale 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-section {
    margin-bottom: 4rem;
    position: relative;
}

.form-section h4 {
    margin-bottom: 2rem;
    color: var(--antique-brown);
    font-size: 1.15rem;
    font-weight: 500;
    font-family: 'Lora', serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.8;
    position: relative;
    padding-bottom: 1rem;
}

.form-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--moss-green) 0%, transparent 100%);
    opacity: 0.4;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-field label {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: var(--soft-charcoal);
    margin-bottom: 0.85rem;
    letter-spacing: 0.01em;
    font-weight: 500;
    display: block;
}

.form-field input,
.form-field textarea {
    padding: 1.15rem 1.5rem;
    border: none;
    border-bottom: 2px solid rgba(122,139,111,0.2);
    background: rgba(255,255,255,0.6);
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: var(--soft-charcoal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(58,55,50,0.03);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--teal);
    background: rgba(255,255,255,0.95);
    box-shadow: 
        0 8px 24px rgba(90,140,140,0.08),
        0 2px 8px rgba(90,140,140,0.04);
    transform: translateY(-2px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--antique-brown);
    opacity: 0.4;
    font-style: italic;
}

.form-field textarea {
    resize: vertical;
    line-height: 1.6;
}

.form-note {
    font-size: 0.85rem;
    color: var(--antique-brown);
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.form-checkbox:hover {
    transform: translateX(4px);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--teal);
    border-radius: 3px;
}

.form-checkbox label {
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.form-checkbox:hover label {
    color: var(--teal);
}

.form-submit {
    padding: 1.4rem 4.5rem;
    background: linear-gradient(135deg, var(--soft-charcoal) 0%, #2d2a26 100%);
    color: var(--warm-cream);
    border: 1px solid rgba(255,255,255,0.1);
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(58,55,50,0.2),
        0 4px 12px rgba(58,55,50,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(90,140,140,0.3) 50%, transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--sapphire) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(90,140,140,0.35),
        0 10px 25px rgba(90,140,140,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.25);
}

.form-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--antique-brown);
    opacity: 0.7;
    letter-spacing: 0.02em;
    position: relative;
}

.form-footer::before {
    content: '~';
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--marigold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* =============================================
   FOOTER - MINIMAL
   ============================================= */

.footer-minimal {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--soft-charcoal) 0%, #2d2a26 100%);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--parchment);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(237,232,220,0.6);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .statement-container,
    .section-intro-offset,
    .service-layout-editorial,
    .tea-layout,
    .gallery-header-minimal,
    .quality-statement {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    .vision-image-large {
        width: 60%;
    }
    
    .service-layout-editorial {
        grid-template-columns: 1fr;
    }
    
    .service-large {
        grid-row: span 1;
    }

    .tea-layout {
        grid-template-columns: 1fr;
        gap: 3.6rem;
        padding: 0 4rem;
    }

    .tea-visuals {
        grid-template-rows: 360px 240px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }

    /* Mobile menu open state */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
        background: rgba(58,55,50,0.95);
        backdrop-filter: blur(12px);
        z-index: 10001;
    }

    /* Animate hamburger into an “X” when active */
    .nav-toggle.active span:first-child {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle.active span:last-child {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-content-float {
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    .statement-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .statement-image-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 400px;
        margin-top: 3rem;
    }
    
    .vision-overlap {
        padding: 8rem 0;
    }
    
    .vision-image-large {
        position: relative;
        left: 0;
        width: 100%;
        height: 400px;
        margin-bottom: 3rem;
    }
    
    .vision-text-card {
        margin-right: 5%;
        margin-left: 5%;
    }
    
    .featured-bg-image {
        width: 100%;
        clip-path: none;
    }
    
    .featured-content-diagonal {
        margin-left: 5%;
        margin-right: 5%;
        background: rgba(245,241,232,0.95);
        backdrop-filter: blur(20px);
        padding: 3rem 2rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .gallery-wide,
    .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-intro-float {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .form-editorial-wrap {
        padding: 3rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tea-layout {
        padding: 0 2rem;
    }

    .tea-text-card {
        padding: 3rem 2.4rem;
    }

    .tea-visuals {
        grid-template-columns: 1fr;
        grid-template-rows: 340px 260px 260px;
        gap: 1.8rem;
    }

    .tea-image--primary {
        grid-column: 1;
        grid-row: 1;
    }

    .tea-image--secondary {
        grid-column: 1;
        grid-row: 2;
        transform: rotate(0.6deg);
    }

    .tea-image--tertiary {
        grid-column: 1;
        grid-row: 3;
        transform: rotate(-0.6deg);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .statement-container,
    .section-intro-offset,
    .service-layout-editorial,
    .tea-layout,
    .gallery-header-minimal,
    .quality-statement {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .statement-number,
    .section-number {
        left: 1rem;
        font-size: 4rem;
    }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =============================================
   ENHANCED ANIMATIONS
   ============================================= */

@keyframes galleryItemFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(3px) translateY(-2px) rotate(0.5deg);
    }
    50% {
        transform: translateX(0px) translateY(-4px) rotate(-0.5deg);
    }
    75% {
        transform: translateX(-3px) translateY(-2px) rotate(0.5deg);
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.4;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(90,140,140,0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(90,140,140,0.3);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
