/* ============================================
   Sweetopia — Coastal Luxe Patisserie
   Seashore meets artisan chocolate boutique
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Primary — Deep ocean & warm sand */
    --deep-sea: #0c1a2a;
    --ocean-dark: #132d46;
    --ocean-mid: #1b4067;
    --tidal: #26587e;
    --seafoam: #6db5a0;
    --sand-light: #f5ede3;
    --sand-warm: #eee2d0;
    --pearl: #faf6f0;
    --shell-pink: #e8c4b8;

    /* Accents */
    --coral: #e07a5f;
    --coral-light: #f2a891;
    --gold: #c8956c;
    --gold-light: #dbb896;
    --copper: #b87333;

    /* Neutrals */
    --ink: #1a1a1a;
    --charcoal: #2d2d2d;
    --slate: #5a6572;
    --mist: #94a3b8;
    --cloud: #cbd5e1;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--pearl);
    overflow-x: hidden;
}

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

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

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

/* ============================================
   Grain Overlay — Texture
   ============================================ */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.1;
    color: var(--ink);
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--coral);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--coral);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

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

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 500px;
    font-weight: 400;
    line-height: 1.7;
}

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

/* ============================================
   Wave Dividers — Seashore
   ============================================ */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.wave-divider--hero svg path { fill: var(--sand-light); }
.wave-divider--about svg path { fill: var(--deep-sea); }
.wave-divider--gallery svg path { fill: var(--sand-light); }
.wave-divider--menu svg path { fill: var(--ocean-dark); }

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    background: rgba(12, 26, 42, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--duration-normal) var(--ease-out);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pearl);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.88rem;
    color: rgba(250, 246, 240, 0.7);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    transition: all var(--duration-fast) ease;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pearl);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link--cta {
    background: var(--coral) !important;
    color: var(--pearl) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.nav-link--cta:hover {
    background: var(--copper) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    z-index: 10;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--pearl);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--coral);
    color: var(--pearl);
    box-shadow: 0 4px 20px rgba(224, 122, 95, 0.3);
}

.btn--primary:hover {
    background: #d06a4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 122, 95, 0.4);
}

.btn--primary svg {
    transition: transform var(--duration-fast) ease;
}

.btn--primary:hover svg {
    transform: translateX(3px);
}

.btn--outline {
    background: transparent;
    color: var(--pearl);
    border: 1.5px solid rgba(250, 246, 240, 0.3);
}

.btn--outline:hover {
    border-color: var(--pearl);
    background: rgba(250, 246, 240, 0.08);
    transform: translateY(-2px);
}

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

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
}

.hero__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(12, 26, 42, 0.92) 0%,
            rgba(19, 45, 70, 0.85) 30%,
            rgba(27, 64, 103, 0.75) 60%,
            rgba(12, 26, 42, 0.88) 100%
        );
}

/* Floating shell SVGs */
.hero__shells {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero__shell {
    position: absolute;
    color: var(--gold-light);
    animation: shellFloat 20s ease-in-out infinite;
}

.hero__shell svg {
    width: 100%;
    height: 100%;
}

.hero__shell--1 {
    top: 8%;
    left: 8%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation-duration: 22s;
}

.hero__shell--2 {
    top: 55%;
    right: 6%;
    width: 90px;
    height: 90px;
    animation-delay: -5s;
    animation-duration: 18s;
}

.hero__shell--3 {
    bottom: 20%;
    left: 15%;
    width: 70px;
    height: 70px;
    animation-delay: -10s;
    animation-duration: 24s;
}

.hero__shell--4 {
    top: 25%;
    right: 20%;
    width: 140px;
    height: 60px;
    animation-delay: -7s;
    animation-duration: 20s;
}

@keyframes shellFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-25px) rotate(5deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.5; }
    75% { transform: translateY(-30px) rotate(2deg); opacity: 0.7; }
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 8rem 0 6rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: var(--space-lg);
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(200, 149, 108, 0.25);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    background: rgba(200, 149, 108, 0.06);
}

.hero__badge svg {
    opacity: 0.7;
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--pearl);
    font-size: clamp(3.5rem, 9vw, 7rem);
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.hero__title-line--accent {
    color: var(--coral-light);
    font-style: italic;
    font-weight: 400;
}

.hero__title-line--small {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--sand-warm);
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.hero__description {
    font-size: 1.1rem;
    color: rgba(250, 246, 240, 0.65);
    max-width: 520px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    font-weight: 300;
}

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

.hero__scroll-hint {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero__scroll-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(250, 246, 240, 0.35);
    font-weight: 500;
}

.hero__scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(250, 246, 240, 0.2);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--sand-light);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.about__image-col {
    position: relative;
}

.about__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.about__image-frame:hover img {
    transform: scale(1.05);
}

.about__image-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.about__stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--deep-sea);
    color: var(--pearl);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 20px 60px rgba(12, 26, 42, 0.3);
}

.about__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mist);
    font-weight: 500;
}

.about__text-col p {
    color: var(--slate);
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
}

.about__intro {
    font-size: 1.1rem !important;
    color: var(--charcoal) !important;
}

.about__intro strong {
    color: var(--coral);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: var(--space-lg);
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 149, 108, 0.1);
    transition: all var(--duration-normal) var(--ease-out);
}

.about__feature:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(200, 149, 108, 0.25);
    transform: translateX(5px);
}

.about__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--deep-sea);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.about__feature p {
    font-size: 0.85rem !important;
    color: var(--slate) !important;
    margin-bottom: 0 !important;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--deep-sea);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 181, 160, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.gallery__header {
    margin-bottom: var(--space-xl);
}

.gallery__header .section-title {
    color: var(--pearl);
}

.gallery__header .section-subtitle {
    color: var(--mist);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery__item-image {
    width: 100%;
    height: 100%;
}

.gallery__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover .gallery__item-image img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12, 26, 42, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery__item-title {
    font-size: 1.35rem;
    color: var(--pearl);
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.gallery__item-desc {
    font-size: 0.85rem;
    color: rgba(250, 246, 240, 0.6);
    font-weight: 300;
    line-height: 1.5;
}

.gallery__item-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(250, 246, 240, 0.1);
    backdrop-filter: blur(10px);
    color: var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 246, 240, 0.2);
    transition: all var(--duration-fast) ease;
    opacity: 0;
    transform: translateY(-5px);
}

.gallery__item:hover .gallery__item-btn {
    opacity: 1;
    transform: translateY(0);
}

.gallery__item-btn:hover {
    background: var(--coral);
    border-color: var(--coral);
}

/* ============================================
   Menu Section
   ============================================ */
.menu {
    background: var(--sand-light);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.menu__header {
    margin-bottom: var(--space-xl);
}

.menu__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-xl);
    align-items: start;
}

.menu__image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 26, 42, 0.15);
    position: sticky;
    top: 120px;
}

.menu__image-frame img {
    width: 100%;
    height: auto;
}

.menu__category {
    margin-bottom: var(--space-lg);
}

.menu__category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(12, 26, 42, 0.1);
    position: relative;
}

.menu__category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--coral);
}

.menu__items {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.menu__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) ease;
    cursor: pointer;
    flex-wrap: wrap;
}

.menu__item:hover {
    background: rgba(224, 122, 95, 0.06);
}

.menu__item--featured {
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
}

.menu__item--special {
    border-left: 2px solid var(--seafoam);
    padding-left: 1.25rem;
}

.menu__item-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.menu__item-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    white-space: nowrap;
}

.menu__item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--cloud);
    min-width: 20px;
    margin-bottom: 4px;
}

.menu__item-prices {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.menu__item-prices span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--coral);
    white-space: nowrap;
}

.menu__item-prices small {
    font-weight: 400;
    color: var(--slate);
    font-size: 0.78rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--ocean-dark);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 181, 160, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact__header {
    margin-bottom: var(--space-xl);
}

.contact__header .section-title {
    color: var(--pearl);
}

.contact__header .section-subtitle {
    color: var(--mist);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact__card {
    background: rgba(250, 246, 240, 0.04);
    border: 1px solid rgba(250, 246, 240, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
}

.contact__card-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(250, 246, 240, 0.06);
}

.contact__card-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 149, 108, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__card-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mist);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact__card-value {
    display: block;
    font-size: 0.98rem;
    color: var(--pearl);
    font-weight: 400;
    line-height: 1.5;
}

.contact__card-value--sub {
    font-size: 0.85rem;
    color: var(--mist);
}

a.contact__card-value:hover {
    color: var(--coral-light);
}

.contact__socials {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 246, 240, 0.06);
}

.contact__social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.contact__social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 246, 240, 0.06);
    border: 1px solid rgba(250, 246, 240, 0.1);
    color: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
}

.contact__social:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--pearl);
    transform: translateY(-3px);
}

/* Contact Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact__form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mist);
    font-weight: 500;
}

.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(250, 246, 240, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(250, 246, 240, 0.04);
    color: var(--pearl);
    transition: all var(--duration-fast) ease;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
    color: var(--slate);
}

.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(250, 246, 240, 0.06);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.contact__form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact__form-group select option {
    background: var(--deep-sea);
    color: var(--pearl);
}

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

.contact__form-response {
    margin-top: var(--space-sm);
    padding: var(--space-sm) 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
}

.contact__form-response.success {
    background: rgba(109, 181, 160, 0.15);
    color: var(--seafoam);
    border: 1px solid rgba(109, 181, 160, 0.2);
    display: block;
}

.contact__form-response.error {
    background: rgba(224, 122, 95, 0.15);
    color: var(--coral-light);
    border: 1px solid rgba(224, 122, 95, 0.2);
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--deep-sea);
    color: var(--mist);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}

.footer__wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer__wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer__wave svg path {
    fill: var(--ocean-dark);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(250, 246, 240, 0.06);
    margin-bottom: var(--space-md);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--pearl);
    display: block;
    margin-bottom: 0.25rem;
}

.footer__tagline {
    font-size: 0.88rem;
    color: var(--slate);
    font-weight: 400;
}

.footer__nav {
    display: flex;
    gap: var(--space-xl);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__col ul {
    list-style: none;
}

.footer__col li {
    margin-bottom: 0.5rem;
}

.footer__col a {
    font-size: 0.9rem;
    color: var(--mist);
    transition: all var(--duration-fast) ease;
}

.footer__col a:hover {
    color: var(--pearl);
    padding-left: 4px;
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--slate);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 26, 42, 0.97);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
    margin-top: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--pearl);
    font-weight: 400;
    font-style: italic;
}

.lightbox__counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    color: var(--mist);
    letter-spacing: 0.15em;
    font-weight: 500;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(250, 246, 240, 0.06);
    border: 1px solid rgba(250, 246, 240, 0.1);
    color: var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
    z-index: 10;
}

.lightbox__close:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(250, 246, 240, 0.06);
    border: 1px solid rgba(250, 246, 240, 0.1);
    color: var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
    z-index: 10;
}

.lightbox__nav:hover {
    background: rgba(250, 246, 240, 0.12);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }
.reveal--delay-4 { transition-delay: 0.6s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about__image-col {
        max-width: 500px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

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

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

    .menu__image-frame {
        position: static;
        max-width: 500px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(12, 26, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-out);
        z-index: 5;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-display);
        font-weight: 500;
        padding: 0.75rem 1rem;
        text-align: center;
    }

    .nav-link--cta {
        margin-top: var(--space-sm);
        font-size: 1rem !important;
        font-family: var(--font-body) !important;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero__content {
        padding: 7rem 0 5rem;
    }

    .hero__title-line {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__shell { display: none; }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__item-overlay {
        opacity: 1;
    }

    .gallery__item-btn {
        opacity: 1;
        transform: translateY(0);
    }

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

    .footer__top {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer__nav {
        gap: var(--space-lg);
    }

    .wave-divider svg {
        height: 50px;
    }

    .lightbox__nav--prev { left: 0.75rem; }
    .lightbox__nav--next { right: 0.75rem; }
    .lightbox__nav { width: 40px; height: 40px; }

    .lightbox__nav--prev,
    .lightbox__nav--next {
        bottom: 2rem;
        top: auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.25rem;
        --space-lg: 2rem;
        --space-xl: 3.5rem;
        --space-2xl: 5rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about__stat {
        right: 0;
        bottom: -10px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar, .hero__shells, .wave-divider, .lightbox, .grain-overlay,
    .hero__scroll-hint, .footer, .hero__bg-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero__title-line, .section-title {
        color: black !important;
    }

    section {
        page-break-inside: avoid;
    }
}
