/* ============================================
   ROSA ELEGANTE — Editorial Floral Website
   Color Palette: Plum + Amber
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-deep: #3D1C3F;
    --plum: #5B2C6F;
    --plum-light: #7D3C8E;
    --plum-muted: #9B59B6;
    --plum-pale: #F5E6F7;
    --plum-bg: #FDF8FF;
    
    --amber: #D4A843;
    --amber-light: #E8C876;
    --amber-dark: #B8922E;
    --amber-pale: #FFF8E7;
    
    --cream: #FDF9F3;
    --cream-dark: #F5EDE0;
    --warm-white: #FEFCF9;
    --text-dark: #1A1A2E;
    --text-mid: #3D3D5C;
    --text-light: #6B6B8A;
    --text-muted: #9999B0;
    --border: rgba(91, 44, 111, 0.12);
    --border-light: rgba(91, 44, 111, 0.06);
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(61, 28, 63, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 28, 63, 0.08);
    --shadow-lg: 0 20px 60px rgba(61, 28, 63, 0.1);
    --shadow-glow: 0 0 60px rgba(212, 168, 67, 0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
}

::selection {
    background: var(--plum);
    color: white;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--plum);
    color: white;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--plum-deep);
    margin-bottom: var(--space-lg);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: white;
    box-shadow: 0 4px 20px rgba(91, 44, 111, 0.3);
}

.btn--primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.4);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--border);
}

.btn--ghost:hover {
    border-color: var(--plum);
    background: var(--plum-pale);
}

.btn--header {
    background: var(--amber);
    color: var(--plum-deep);
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.btn--header:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

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

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

.btn--large {
    padding: 1.125rem 2.25rem;
    font-size: 0.9375rem;
}

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

/* --- Link Arrow --- */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum);
    margin-top: var(--space-sm);
    transition: gap var(--transition-base);
}

.link-arrow:hover {
    gap: 0.75rem;
    color: var(--amber-dark);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-md);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--plum-deep);
    flex-shrink: 0;
}

.logo-mark {
    color: var(--amber);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Nav */
.nav-list {
    display: none;
    gap: var(--space-lg);
}

.nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

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

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

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

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--plum-pale);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--plum);
    transition: all var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 252, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    padding: var(--space-xl);
    animation: menuSlideIn 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--plum-deep);
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--amber);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(72px + var(--space-xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--plum-bg) 50%, var(--amber-pale) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 44, 111, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--amber);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--plum-deep);
    margin-bottom: var(--space-lg);
    line-height: 1.05;
}

.hero-title em {
    color: var(--amber);
    font-style: italic;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 520px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-image-stack {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img--primary {
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
}

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

.hero-img--secondary {
    bottom: 5%;
    left: 0;
    width: 55%;
    height: 55%;
    border: 4px solid white;
}

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

.hero-accent {
    position: absolute;
    top: 10%;
    left: 5%;
    color: var(--amber);
    opacity: 0.4;
    z-index: -1;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
    background: var(--plum-deep);
    padding: var(--space-2xl) 0;
}

.intro-strip-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.intro-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.intro-author {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.05em;
}

/* ============================================
   ARRANGEMENTS
   ============================================ */
.arrangements {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.arrangement-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.arrangement-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.arrangement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arrangement-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/6.2;
}

.arrangement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.arrangement-card:hover .arrangement-img img {
    transform: scale(1.05);
}

.arrangement-overlay {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}

.arrangement-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--amber);
    color: var(--plum-deep);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
}

.arrangement-info {
    padding: var(--space-lg);
}

.arrangement-name {
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: var(--space-sm);
}

.arrangement-desc {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

/* ============================================
   OCCASIONS
   ============================================ */
.occasions {
    padding: var(--space-3xl) 0;
    background: var(--plum-bg);
}

.occasions-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.occasions-content {
    max-width: 560px;
}

.occasions-desc {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.occasion-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.occasion-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: white;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.occasion-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.occasion-icon {
    color: var(--amber);
    flex-shrink: 0;
}

.occasion-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--plum-deep);
}

/* Occasions Visual */
.occasions-visual {
    position: relative;
}

.occasion-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/7;
}

.occasion-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.occasion-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.floating-label {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--plum-deep);
    font-style: italic;
}

.floating-sublabel {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    aspect-ratio: 7/8;
}

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

.about-content {
    max-width: 560px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

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

.value-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
}

.value-item h4 {
    font-size: 1.125rem;
    color: var(--plum-deep);
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item--large {
    aspect-ratio: 1/1;
}

.gallery-item--wide {
    aspect-ratio: 2/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta .section-eyebrow {
    color: var(--amber-light);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-lg);
}

.cta-title em {
    color: var(--amber);
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.cta .btn--primary {
    background: var(--amber);
    color: var(--plum-deep);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.cta .btn--primary:hover {
    background: var(--amber-light);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.cta .btn--outline:hover {
    background: white;
    color: var(--plum);
    border-color: white;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    max-width: 520px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.contact-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-detail h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--plum);
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--amber-dark);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-title {
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
    color: var(--text-dark);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-xl);
    animation: fadeIn 0.4s ease;
}

.success-icon {
    color: var(--plum);
    margin-bottom: var(--space-md);
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--plum-deep);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo--footer {
    color: white;
}

.logo--footer .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding-top: var(--space-lg);
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-address a {
    color: var(--amber);
    transition: color var(--transition-fast);
}

.footer-address a:hover {
    color: var(--amber-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-visual {
        height: 600px;
    }
    
    .arrangement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .occasions-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 250px);
    }
    
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
        aspect-ratio: auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-nav {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(72px + var(--space-2xl));
    }
    
    .hero-image-stack {
        height: 650px;
    }
    
    .hero-img--primary {
        width: 75%;
        height: 90%;
    }
    
    .hero-img--secondary {
        width: 50%;
        height: 55%;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --- High Contrast --- */
@media (prefers-contrast: high) {
    :root {
        --border: rgba(91, 44, 111, 0.3);
    }
}
