/* ==============================================
   SORVETE DA RESERVA — Design System v3
   Minimalist redesign inspired by Frankie & Jo's
   ============================================== */

/* ----- Design Tokens ----- */
:root {
    /* Brand Colors */
    --sr-green:         #2D5A3D;
    --sr-green-dark:    #234A31;
    --sr-green-light:   #3A7D44;
    --sr-gold:          #8B6914;
    --sr-terracotta:    #C9824A;

    /* Backgrounds — warm, never pure white */
    --sr-bg:            #FDFAF5;
    --sr-bg-cream:      #F7F3EC;
    --sr-bg-sage:       #EAF0E6;
    --sr-bg-dark:       #1A1A18;

    /* Text */
    --sr-text:          #1A1A18;
    --sr-text-muted:    #5C5C55;
    --sr-text-inverse:  #FDFAF5;

    /* Borders */
    --sr-border:        #DDD5C0;
    --sr-border-light:  #EDE8DC;

    /* Typography */
    --sr-font-heading:  'Playfair Display', Georgia, serif;
    --sr-font-body:     'DM Sans', system-ui, sans-serif;

    /* Fluid Type Scale */
    --sr-text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --sr-text-sm:   clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
    --sr-text-base: clamp(1rem, 0.95rem + 0.28vw, 1.125rem);
    --sr-text-md:   clamp(1.125rem, 1rem + 0.56vw, 1.375rem);
    --sr-text-lg:   clamp(1.25rem, 1.1rem + 0.84vw, 1.75rem);
    --sr-text-xl:   clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
    --sr-text-2xl:  clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --sr-text-3xl:  clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);

    /* Border Radius */
    --sr-radius-sm:   8px;
    --sr-radius-md:   16px;
    --sr-radius-lg:   24px;
    --sr-radius-full: 9999px;

    /* Shadows */
    --sr-shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --sr-shadow-md:    0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --sr-shadow-lg:    0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --sr-shadow-hover: 0 20px 44px rgba(45,90,61,0.12), 0 8px 16px rgba(45,90,61,0.06);

    /* Layout */
    --sr-max-width:    1200px;
    --sr-gutter:       clamp(1rem, 4vw, 2rem);
    --sr-section-py:   clamp(5rem, 10vw, 9rem);
    --sr-section-py-sm:clamp(2.5rem, 5vw, 4.5rem);

    /* Animation */
    --sr-ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --sr-ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sr-ease-enter:   cubic-bezier(0.0, 0.0, 0.2, 1.0);
    --sr-dur-fast:     150ms;
    --sr-dur-base:     250ms;
    --sr-dur-slow:     400ms;
}

/* ==============================================
   GLOBAL RESETS & BASE
   ============================================== */

body {
    font-family: var(--sr-font-body) !important;
    font-size: var(--sr-text-base);
    line-height: 1.7;
    color: var(--sr-text);
    background-color: var(--sr-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sr-font-heading) !important;
    color: var(--sr-text);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2, h3 {
    font-weight: 600;
}

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

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

/* ==============================================
   OVERRIDE OceanWP
   ============================================== */

/* Header OceanWP — esconder nas landing pages */
.page-template-page-delivery #site-header,
.page-template-page-delivery #footer,
.page-template-page-delivery #footer-bottom,
.page-template-page-loja #site-header,
.page-template-page-loja #footer,
.page-template-page-loja #footer-bottom,
.page-template-page-sobre #site-header,
.page-template-page-sobre #footer,
.page-template-page-sobre #footer-bottom {
    display: none !important;
}

/* Container full width */
.sr-landing {
    width: 100%;
}

.page-template-page-delivery #content-wrap,
.page-template-page-loja #content-wrap,
.page-template-page-sobre #content-wrap,
.page-template-front-page #content-wrap {
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-delivery .content-area,
.page-template-page-loja .content-area,
.page-template-page-sobre .content-area,
.page-template-front-page .content-area {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.page-template-page-delivery #main,
.page-template-page-loja #main,
.page-template-page-sobre #main,
.page-template-front-page #main {
    padding: 0 !important;
    margin: 0 !important;
}

.page-template-page-delivery #sidebar,
.page-template-page-loja #sidebar,
.page-template-page-sobre #sidebar,
.page-template-front-page #sidebar {
    display: none !important;
}

.page-template-page-delivery .page-header,
.page-template-page-loja .page-header,
.page-template-page-sobre .page-header,
.page-template-front-page .page-header {
    display: none !important;
}

/* Home: header transparente sobrepondo hero */
.page-template-front-page #site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent !important;
}

#site-header,
#site-header-inner,
.oceanwp-mobile-menu-icon {
    background-color: var(--sr-bg-dark) !important;
    border-bottom: none !important;
}

#site-logo a img {
    max-height: 50px;
}

/* Footer OceanWP */
#footer,
#footer-bottom {
    background-color: var(--sr-bg-dark) !important;
    color: rgba(253, 250, 245, 0.5) !important;
    border-top: 1px solid rgba(253, 250, 245, 0.08) !important;
}

#footer a,
#footer-bottom a {
    color: rgba(253, 250, 245, 0.7) !important;
}

/* ==============================================
   SKIP LINK (accessibility)
   ============================================== */

.sr-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sr-green);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-size: var(--sr-text-sm);
    transition: top 0.2s;
}

.sr-skip-link:focus {
    top: 0;
}

/* ==============================================
   NAVIGATION
   ============================================== */

.sr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(26, 26, 24, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(253, 250, 245, 0.06);
}

.sr-nav-inner {
    max-width: var(--sr-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--sr-gutter);
}

.sr-nav-logo img {
    height: 38px;
    width: auto;
}

.sr-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sr-nav-links a {
    color: rgba(253, 250, 245, 0.75);
    font-family: var(--sr-font-body) !important;
    font-size: var(--sr-text-sm);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color var(--sr-dur-base) ease;
}

.sr-nav-links a:hover {
    color: var(--sr-text-inverse);
}

.sr-nav-links a[aria-current="page"] {
    border-bottom: 2px solid rgba(253, 250, 245, 0.8);
    padding-bottom: 2px;
}

.sr-nav-cta {
    background: var(--sr-green-light) !important;
    color: var(--sr-text-inverse) !important;
    padding: 10px 22px;
    border-radius: var(--sr-radius-full);
    font-weight: 600 !important;
    transition: background-color var(--sr-dur-base) ease, transform var(--sr-dur-fast) var(--sr-ease-spring) !important;
}

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

/* Nav toggle (hamburger) */
.sr-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.sr-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sr-bg);
    transition: transform 0.3s, opacity 0.3s;
}

.sr-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sr-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.sr-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==============================================
   NAV LINK ANIMATED UNDERLINE
   ============================================== */

.sr-nav-links a:not(.sr-nav-cta) {
    position: relative;
    padding-bottom: 2px;
}

.sr-nav-links a:not(.sr-nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sr-text-inverse);
    transition: width 0.3s var(--sr-ease-smooth);
}

.sr-nav-links a:not(.sr-nav-cta):hover::after {
    width: 100%;
}

/* ==============================================
   HERO SECTION (legacy full-screen — subpages)
   ============================================== */

.sr-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--sr-text-inverse);
    background-color: var(--sr-bg-dark);
    background-size: cover;
    background-position: center 30%;
    padding: 0 var(--sr-gutter);
    overflow: hidden;
}

.sr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(26, 26, 24, 0.75) 0%,
        rgba(26, 26, 24, 0.50) 40%,
        rgba(26, 26, 24, 0.30) 70%,
        rgba(26, 26, 24, 0.65) 100%
    );
    z-index: 1;
}

.sr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding-block: clamp(7rem, 16vw, 12rem);
}

.sr-hero h1 {
    font-size: var(--sr-text-3xl);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--sr-text-inverse) !important;
}

.sr-hero p {
    font-size: var(--sr-text-md);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: rgba(253, 250, 245, 0.85);
    font-family: var(--sr-font-body) !important;
    max-width: 520px;
    margin-inline: auto;
}

/* ==============================================
   HERO SPLIT (homepage — 50/50 grid)
   ============================================== */

.sr-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
    padding: 0 var(--sr-gutter);
    max-width: var(--sr-max-width);
    margin: 5rem auto 0;
    gap: 3rem;
}

.sr-hero-split .sr-hero-text {
    max-width: 520px;
}

.sr-hero-split .sr-hero-text h1 {
    font-size: var(--sr-text-3xl);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--sr-text);
}

.sr-hero-split .sr-hero-text p {
    font-size: var(--sr-text-md);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: var(--sr-text-muted);
    font-family: var(--sr-font-body) !important;
}

.sr-hero-split .sr-hero-image img {
    width: 100%;
    border-radius: var(--sr-radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(0.92) brightness(1.02);
}

/* ==============================================
   SUBPAGE HERO (simpler — image + text below)
   ============================================== */

.sr-hero-subpage {
    padding-top: 5rem;
}

.sr-hero-subpage img {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    display: block;
}

.sr-hero-subpage-content {
    text-align: center;
    padding: var(--sr-section-py) var(--sr-gutter);
    max-width: var(--sr-max-width);
    margin: 0 auto;
}

.sr-hero-subpage-content h1 {
    font-size: var(--sr-text-3xl);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.sr-hero-subpage-content p {
    font-size: var(--sr-text-md);
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--sr-text-muted);
    font-family: var(--sr-font-body) !important;
    max-width: 600px;
    margin-inline: auto;
}

/* ==============================================
   BUTTONS
   ============================================== */

.sr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    min-height: 52px;
    padding: 0 2rem;
    font-size: var(--sr-text-base);
    font-weight: 600;
    font-family: var(--sr-font-body) !important;
    text-decoration: none;
    border-radius: var(--sr-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    transition:
        transform var(--sr-dur-fast) var(--sr-ease-spring),
        box-shadow var(--sr-dur-base) ease,
        background-color var(--sr-dur-base) ease,
        border-color var(--sr-dur-base) ease;
    will-change: transform;
}

.sr-btn:active {
    transform: scale(0.96);
}

.sr-btn svg,
.sr-btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Primary — brand green */
.sr-btn-primary {
    background-color: var(--sr-green);
    color: var(--sr-text-inverse);
    box-shadow: 0 4px 14px rgba(45, 90, 61, 0.30);
}
.sr-btn-primary:hover {
    background-color: var(--sr-green-dark);
    color: var(--sr-text-inverse);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.40);
    transform: translateY(-2px);
}

/* WhatsApp */
.sr-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30);
}
.sr-btn-whatsapp:hover {
    background: linear-gradient(135deg, #1EBE5A 0%, #0F7A6E 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40);
    transform: translateY(-2px);
}

/* Maps */
.sr-btn-maps {
    background-color: #4285F4;
    color: #fff;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.30);
}
.sr-btn-maps:hover {
    background-color: #3367D6;
    color: #fff;
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.40);
    transform: translateY(-2px);
}

/* Secondary — ghost/outline */
.sr-btn-secondary {
    background-color: transparent;
    color: var(--sr-text-inverse);
    border-color: rgba(253, 250, 245, 0.50);
}
.sr-btn-secondary:hover {
    background-color: rgba(253, 250, 245, 0.10);
    border-color: rgba(253, 250, 245, 0.85);
    color: var(--sr-text-inverse);
}

/* Secondary on light bg */
.sr-btn-outline {
    background-color: transparent;
    color: var(--sr-green);
    border-color: var(--sr-green);
}
.sr-btn-outline:hover {
    background-color: var(--sr-green);
    color: var(--sr-text-inverse);
    transform: translateY(-2px);
}

/* Secondary on light bg — dark text */
.sr-btn-secondary-dark {
    background-color: transparent;
    color: var(--sr-text);
    border-color: var(--sr-border);
}
.sr-btn-secondary-dark:hover {
    background-color: var(--sr-bg-cream);
    border-color: var(--sr-text-muted);
    color: var(--sr-text);
}

/* ==============================================
   SECTIONS
   ============================================== */

.sr-section {
    padding: var(--sr-section-py) var(--sr-gutter);
    max-width: var(--sr-max-width);
    margin: 0 auto;
    position: relative;
}

.sr-section h2 {
    font-size: var(--sr-text-2xl);
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sr-section p {
    font-size: var(--sr-text-base);
    line-height: 1.75;
    color: var(--sr-text-muted);
    font-family: var(--sr-font-body) !important;
}

/* Dark sections */
.sr-section-dark {
    background-color: var(--sr-bg-dark);
    color: var(--sr-text-inverse);
    max-width: 100%;
    padding: var(--sr-section-py) var(--sr-gutter);
}

.sr-section-dark .sr-section-inner {
    max-width: var(--sr-max-width);
    margin: 0 auto;
}

.sr-section-dark h2 {
    color: var(--sr-text-inverse) !important;
    font-size: var(--sr-text-2xl);
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.1;
}

.sr-section-dark p {
    color: rgba(253, 250, 245, 0.75);
}

/* Cream sections */
.sr-section-cream {
    background-color: var(--sr-bg-cream);
    max-width: 100%;
    padding: var(--sr-section-py) var(--sr-gutter);
    position: relative;
}

.sr-section-cream .sr-section-inner {
    max-width: var(--sr-max-width);
    margin: 0 auto;
}

/* ==============================================
   OVERLINE LABEL (above section headings)
   ============================================== */

.sr-overline {
    display: inline-block;
    font-family: var(--sr-font-body) !important;
    font-size: var(--sr-text-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    font-style: italic;
    color: var(--sr-green);
    margin-bottom: 0.75rem;
}

.sr-section-dark .sr-overline {
    color: rgba(253, 250, 245, 0.50);
}

/* ==============================================
   BADGE (social proof)
   ============================================== */

.sr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 90, 61, 0.08);
    border: 1px solid rgba(45, 90, 61, 0.15);
    padding: 10px 22px;
    border-radius: var(--sr-radius-full);
    font-size: var(--sr-text-xs);
    font-family: var(--sr-font-body) !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--sr-green);
    margin-bottom: 1.5rem;
}

/* Badge on hero (dark bg) */
.sr-hero .sr-badge {
    background: rgba(253, 250, 245, 0.10);
    border-color: rgba(253, 250, 245, 0.20);
    color: rgba(253, 250, 245, 0.85);
    backdrop-filter: blur(8px);
}

.sr-badge-light {
    background: var(--sr-bg-cream);
    border: 1px solid var(--sr-border);
    color: var(--sr-text-muted);
}

/* ==============================================
   FEATURE CARDS (3-column grid)
   ============================================== */

.sr-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.sr-feature-card {
    text-align: center;
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--sr-bg);
    border-radius: 16px;
    border: 1px solid var(--sr-border-light);
    border-bottom: 2px solid transparent;
    transition:
        transform 0.35s var(--sr-ease-spring),
        box-shadow 0.35s var(--sr-ease-smooth),
        border-bottom-color 0.35s ease;
    will-change: transform;
}

.sr-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sr-shadow-hover);
    border-bottom-color: var(--sr-green);
}

.sr-feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.sr-feature-card h3 {
    font-size: var(--sr-text-lg);
    font-weight: 600;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.25;
    color: var(--sr-text);
}

.sr-feature-card p {
    font-size: var(--sr-text-sm);
    color: var(--sr-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Feature cards on dark background */
.sr-section-dark .sr-feature-card {
    background: rgba(253, 250, 245, 0.04);
    border-color: rgba(253, 250, 245, 0.08);
    border-bottom-color: transparent;
}

.sr-section-dark .sr-feature-card:hover {
    background: rgba(253, 250, 245, 0.08);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20);
    border-bottom-color: var(--sr-green-light);
}

.sr-section-dark .sr-feature-card h3 {
    color: var(--sr-text-inverse);
}

.sr-section-dark .sr-feature-card p {
    color: rgba(253, 250, 245, 0.65);
}

/* ==============================================
   FLAVOR CARDS (with images)
   ============================================== */

.sr-flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
}

.sr-flavor-card {
    text-align: center;
    background: rgba(253, 250, 245, 0.04);
    border: 1px solid rgba(253, 250, 245, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s var(--sr-ease-spring), box-shadow 0.35s var(--sr-ease-smooth);
}

.sr-flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20);
}

.sr-flavor-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: saturate(0.9) brightness(1.02);
    transition: filter 0.4s var(--sr-ease-smooth), transform 0.6s var(--sr-ease-spring);
}

.sr-flavor-card:hover img {
    filter: saturate(1) brightness(1.05);
    transform: scale(1.04);
}

.sr-flavor-card h3 {
    font-size: var(--sr-text-base);
    font-weight: 600;
    color: var(--sr-text-inverse);
    margin: 1rem 1rem 0.5rem;
}

.sr-flavor-card p {
    font-size: var(--sr-text-sm);
    color: rgba(253, 250, 245, 0.65);
    margin: 0 1rem 1.25rem;
    line-height: 1.5;
}

/* ==============================================
   REVIEWS GRID (3-column card layout)
   ============================================== */

.sr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.sr-review-card {
    background: var(--sr-bg);
    border: 1px solid var(--sr-border-light);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: left;
    transition: box-shadow var(--sr-dur-base) ease;
}

.sr-review-card:hover {
    box-shadow: var(--sr-shadow-md);
}

.sr-review-stars {
    color: #F5C518;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.sr-review-card p {
    font-size: var(--sr-text-sm);
    line-height: 1.7;
    color: var(--sr-text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.sr-review-card cite {
    font-size: var(--sr-text-xs);
    font-weight: 600;
    color: var(--sr-text);
    font-style: normal;
}

.sr-review-source {
    color: var(--sr-text-muted);
    font-weight: 400;
}

/* ==============================================
   CTA SECTION (final call-to-action)
   ============================================== */

.sr-cta-section {
    text-align: center;
    padding: clamp(5rem, 10vw, 9rem) var(--sr-gutter);
    background-color: var(--sr-bg-dark);
    color: var(--sr-text-inverse);
    position: relative;
}

.sr-cta-section h2 {
    font-size: var(--sr-text-2xl);
    margin-bottom: 1rem;
    color: var(--sr-text-inverse) !important;
    line-height: 1.1;
}

.sr-cta-section p {
    color: rgba(253, 250, 245, 0.75);
    margin-bottom: 2.5rem;
    font-size: var(--sr-text-md);
    font-family: var(--sr-font-body) !important;
    max-width: 520px;
    margin-inline: auto;
}

/* CTA warm gradient variant */
.sr-cta-section--warm {
    background: linear-gradient(
        135deg,
        var(--sr-bg-dark) 0%,
        #2A2A26 50%,
        #1A1A18 100%
    );
}

/* ==============================================
   2-COLUMN GRID
   ============================================== */

.sr-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.sr-grid-2col img {
    border-radius: var(--sr-radius-md);
    box-shadow: var(--sr-shadow-md);
}

.sr-grid-2col p {
    font-size: var(--sr-text-base);
    line-height: 1.8;
}

/* ==============================================
   TRUST BAR (mini badges strip)
   ============================================== */

.sr-trust-bar {
    background: var(--sr-bg-cream);
    padding: 1.25rem var(--sr-gutter);
    border-bottom: 1px solid var(--sr-border-light);
}

.sr-trust-bar__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--sr-max-width);
    margin-inline: auto;
}

.sr-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--sr-text-sm);
    font-weight: 500;
    color: var(--sr-text-muted);
}

.sr-trust-bar__icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* ==============================================
   STEPS (numbered process)
   ============================================== */

.sr-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 3rem;
    counter-reset: step-counter;
}

.sr-step {
    text-align: center;
    padding: 2rem 1.5rem;
    counter-increment: step-counter;
}

.sr-step::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(253, 250, 245, 0.10);
    border: 1px solid rgba(253, 250, 245, 0.20);
    font-family: var(--sr-font-heading);
    font-size: var(--sr-text-lg);
    font-weight: 700;
    color: var(--sr-text-inverse);
}

.sr-step h3 {
    font-size: var(--sr-text-lg);
    color: var(--sr-text-inverse);
    margin-bottom: 0.5rem;
}

.sr-step p {
    font-size: var(--sr-text-sm);
    color: rgba(253, 250, 245, 0.65);
    line-height: 1.6;
}

/* ==============================================
   MAP CONTAINER
   ============================================== */

.sr-map-container {
    width: 100%;
    max-width: 900px;
    margin: 2.5rem auto 0;
    border-radius: var(--sr-radius-md);
    overflow: hidden;
    box-shadow: var(--sr-shadow-lg);
    border: 1px solid rgba(253, 250, 245, 0.08);
}

.sr-map-container iframe {
    width: 100%;
    height: 380px;
    border: none;
}

/* ==============================================
   SECTION DIVIDER (subtle gold line)
   ============================================== */

.sr-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--sr-gold), var(--sr-terracotta));
    margin: 0 auto 2rem;
    border: none;
    border-radius: 1px;
}

/* ==============================================
   IMAGE STYLES
   ============================================== */

.sr-img-rounded {
    border-radius: var(--sr-radius-md);
    box-shadow: var(--sr-shadow-md);
}

.sr-img-hero-logo {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ==============================================
   FOOTER (landing pages — 3-column)
   ============================================== */

.sr-footer {
    background: var(--sr-bg-dark);
    color: var(--sr-bg);
    padding: 4rem var(--sr-gutter) 2rem;
}

.sr-footer-inner {
    max-width: var(--sr-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.sr-footer h4 {
    font-family: var(--sr-font-heading);
    font-size: var(--sr-text-base);
    margin-bottom: 1rem;
}

.sr-footer ul {
    list-style: none;
    padding: 0;
}

.sr-footer li {
    margin-bottom: 0.5rem;
}

.sr-footer a {
    color: rgba(253,250,245,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.sr-footer a:hover {
    color: var(--sr-bg);
}

.sr-footer-tagline {
    color: rgba(253,250,245,0.6);
    font-size: var(--sr-text-sm);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.sr-footer-hours {
    font-size: var(--sr-text-sm);
    color: rgba(253,250,245,0.6);
    margin-top: 0.5rem;
}

.sr-footer-social {
    margin-top: 1rem;
}

.sr-footer-social a {
    color: rgba(253,250,245,0.7);
}

.sr-footer-social a:hover {
    color: var(--sr-bg);
}

.sr-footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.sr-footer-bottom {
    max-width: var(--sr-max-width);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(253,250,245,0.1);
    text-align: center;
    font-size: var(--sr-text-xs);
    color: rgba(253,250,245,0.4);
}

/* ==============================================
   PHOTO GRID — Instagram photos
   ============================================== */

.sr-photo-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.sr-photo-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sr-photo-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.sr-photo-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

.sr-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--sr-radius-lg);
    aspect-ratio: 1;
    filter: saturate(0.88) brightness(1.03) sepia(0.06);
    transition: transform 0.4s var(--sr-ease-smooth), filter 0.4s var(--sr-ease-smooth);
}

.sr-photo-grid img:hover {
    transform: scale(1.03);
    filter: saturate(1) brightness(1.05) sepia(0);
}

.sr-photo-grid figcaption,
.sr-photo-caption {
    font-size: var(--sr-text-xs);
    color: var(--sr-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Photo with text overlay */
.sr-photo-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--sr-radius-lg);
}

.sr-photo-overlay img {
    width: 100%;
    display: block;
    border-radius: var(--sr-radius-lg);
}

.sr-photo-overlay .sr-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(26, 26, 24, 0.85));
    color: var(--sr-text-inverse);
    font-size: var(--sr-text-sm);
    font-weight: 500;
    border-radius: 0 0 var(--sr-radius-lg) var(--sr-radius-lg);
}

/* Full-width photo break */
.sr-photo-break {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: var(--sr-radius-lg);
    margin: 1.5rem 0;
}

.sr-photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================================
   SECTION ACCENT BORDER (top colored line)
   ============================================== */

.sr-section--accent-top {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--sr-green), var(--sr-terracotta)) 1;
}

/* ==============================================
   IMAGE REVEAL (blur-in on load)
   ============================================== */

.sr-img-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.02);
    transition:
        opacity 0.6s var(--sr-ease-enter),
        filter 0.6s var(--sr-ease-enter),
        transform 0.6s var(--sr-ease-enter);
}

.sr-img-reveal.is-loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* ==============================================
   HERO PARALLAX SUBTLE
   ============================================== */

.sr-hero--parallax {
    background-attachment: fixed;
}

/* ==============================================
   QUOTE BLOCK (for testimonials on light bg)
   ============================================== */

.sr-quote {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem 3rem;
    font-style: italic;
    font-size: var(--sr-text-md);
    line-height: 1.8;
    color: var(--sr-text-muted);
}

.sr-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-family: var(--sr-font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--sr-green);
    opacity: 0.2;
    font-style: normal;
}

/* ==============================================
   SCROLL ANIMATIONS (replaces AOS library)
   ============================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

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

@media (max-width: 768px) {
    /* Nav hamburger */
    .sr-nav-toggle {
        display: flex;
    }

    .sr-nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 24, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
    }

    .sr-nav-links.is-open {
        display: flex;
    }

    .sr-nav-links a {
        font-size: var(--sr-text-xl);
    }

    .sr-nav-cta {
        padding: 12px 28px;
        font-size: var(--sr-text-base) !important;
    }

    .sr-nav-inner {
        padding: 10px var(--sr-gutter);
    }

    /* Hero split */
    .sr-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 6rem;
    }

    /* Hero subpage */
    .sr-hero--parallax {
        background-attachment: scroll;
    }

    /* Buttons */
    .sr-btn {
        width: 100%;
        justify-content: center;
        min-height: 50px;
    }

    /* Features */
    .sr-features {
        grid-template-columns: 1fr;
    }
    .sr-feature-card:hover {
        transform: none;
    }

    /* Flavor grid */
    .sr-flavor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews grid */
    .sr-reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Grid */
    .sr-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Map */
    .sr-map-container iframe {
        height: 260px;
    }

    /* Steps */
    .sr-steps {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .sr-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Quote */
    .sr-quote {
        padding: 1.5rem 1rem 1.5rem 2.5rem;
    }
}

@media (min-width: 768px) {
    .sr-photo-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .sr-photo-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .sr-photo-grid-3 img:last-child {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }
}

/* ==============================================
   ACCESSIBILITY — Reduced Motion
   ============================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .sr-img-reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
    [data-aos] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
