/* ============================================
   Daily Dose Coffee Haven — Styles
   Teal + Slate palette | Corporate confident
   ============================================ */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.06);
    --shadow-md: 0 4px 16px rgba(15,23,42,.1), 0 2px 6px rgba(15,23,42,.06);
    --shadow-lg: 0 12px 40px rgba(15,23,42,.14), 0 4px 12px rgba(15,23,42,.08);
    --shadow-xl: 0 24px 60px rgba(15,23,42,.18);

    --transition: 220ms cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-800);
    background: var(--slate-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.text-center { text-align: center; }

/* --- Section labels --- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-950);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--teal {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}
.btn--teal:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-light {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.45);
    backdrop-filter: blur(4px);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,.22);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn--lg {
    padding: 15px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow var(--transition);
}
.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--slate-900);
}
.nav__logo svg {
    color: var(--teal-600);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__links a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav__links a:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    padding: 120px 0 80px;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13,148,136,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(13,148,136,.10) 0%, transparent 60%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-200);
    background: rgba(13,148,136,.15);
    border: 1px solid rgba(13,148,136,.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-300);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.hero__stat-label {
    font-size: 13px;
    color: var(--slate-400);
}
.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--slate-700);
}

.hero__image-wrapper {
    position: relative;
    height: 560px;
}
.hero__image-hero {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero__image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-float {
    position: absolute;
    bottom: -24px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--slate-800);
}
.hero__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: #fff;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-col {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/520;
}

.about__content { padding: 8px 0; }
.about__text {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}
.about__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: var(--radius-md);
    color: var(--teal-700);
}
.about__feature strong {
    display: block;
    font-size: 15px;
    color: var(--slate-900);
    margin-bottom: 2px;
}
.about__feature span {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.5;
}

/* --- Menu --- */
.menu {
    padding: 100px 0;
    background: var(--slate-50);
}
.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-200);
}
.menu-card__img {
    overflow: hidden;
    aspect-ratio: 400/260;
}
.menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.menu-card:hover .menu-card__img img {
    transform: scale(1.05);
}
.menu-card__body {
    padding: 28px;
}
.menu-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.menu-card__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}
.menu-card__desc {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.65;
}

/* --- Atmosphere --- */
.atmosphere {
    padding: 100px 0;
    background: #fff;
}
.atm__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.atm__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
}
.atm__item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.atm__item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.atm__item-content {
    padding: 28px;
}
.atm__item h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.atm__item p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* --- Visit --- */
.visit {
    padding: 100px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}
.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(13,148,136,.15) 0%, transparent 70%);
    pointer-events: none;
}
.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    position: relative;
}

.visit__info {
    padding: 40px 0;
}
.visit__info .section-label { color: var(--teal-300); background: rgba(13,148,136,.15); border-color: rgba(13,148,136,.3); }
.visit__info .section-title { color: #fff; }

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}
.visit__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.visit__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,148,136,.12);
    border: 1px solid rgba(13,148,136,.25);
    border-radius: var(--radius-md);
    color: var(--teal-400);
}
.visit__detail strong {
    display: block;
    font-size: 14px;
    color: var(--slate-300);
    margin-bottom: 4px;
}
.visit__detail span,
.visit__detail a {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}
.visit__detail a:hover { color: var(--teal-400); text-decoration: underline; }

.visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-xl);
}

/* --- Footer --- */
.footer {
    background: var(--slate-950);
    padding: 60px 0 32px;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}
.footer__logo {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}
.footer__logo svg { color: var(--teal-500); }
.footer__brand p {
    font-size: 14px;
    color: var(--slate-400);
    max-width: 300px;
    line-height: 1.6;
}
.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}
.footer__links a {
    font-size: 14px;
    color: var(--slate-400);
    padding: 6px 0;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--teal-400); }
.footer__copy {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.8;
}

/* --- Scroll reveal (below-fold only, progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid { gap: 40px; }
    .hero__image-wrapper { height: 440px; }
    .about__grid { gap: 40px; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__links a {
        width: 100%;
        padding: 12px 16px;
    }

    .hero { padding: 100px 0 60px; }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero__image-wrapper {
        height: 360px;
        order: -1;
    }
    .hero__image-float { display: none; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }

    .about__grid { grid-template-columns: 1fr; }
    .about__image-col { order: -1; }
    .about__image-col img { aspect-ratio: 4/3; }

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

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

    .visit__grid { grid-template-columns: 1fr; }
    .visit__map { min-height: 280px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero__stat-divider { display: none; }
}
