/*
© 2024 AltiBedrift / Haut Forvalting AS. All rights reserved.
*/
:root {
  /* Bali-inspired Design System */
  --bg1: hsla(0, 0%, 96%, 1);
  --bg2: hsla(36, 43%, 85%, 1); /* Made the dark end of the gradient lighter for better text readability */
  --ink: hsla(36, 43%, 23%, 1);
  --ink-rgb: 88, 72, 40;
  --text-light: hsla(0, 0%, 96%, 1);
  --star-gold: #C9A564;
  
  /* Font System */
  --font-family-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-family-heading: 'Playfair Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Type Scale */
  --font-display-large-size: clamp(2.8rem, 1.96rem + 2.7vw, 4rem);
  --font-headline-large-size: clamp(1.75rem, 1.58rem + 0.85vw, 2.25rem);
  --font-title-large-size: clamp(1.25rem, 1.16rem + 0.43vw, 1.375rem);
  --font-body-large-size: 1.05rem;
  --font-body-medium-size: 0.875rem;
  --font-label-small-size: 0.75rem;

  /* Spacing, Radius & Motion */
  --radius: 16px;
  --animation-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-subtle: 0 4px 12px rgba(30, 26, 22, 0.04), 0 0 20px rgba(var(--ink-rgb), 0.05);
  --shadow-medium: 0 8px 24px rgba(30, 26, 22, 0.08), 0 0 35px rgba(var(--ink-rgb), 0.1);
  --mobile-height: 70px;
  --card-padding: clamp(16px, 2.5vh, 24px);
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-family-base);
  font-size: var(--font-body-large-size);
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(90deg, var(--bg1) 0%, var(--bg2) 100%);
  background-size: 200% 200%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.8s ease-in-out, background 1s ease-in-out;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-heading); color: var(--ink); font-weight: var(--font-weight-medium); }
h1 { font-size: var(--font-display-large-size); line-height: 1.1; color: var(--text-light); }
h2 { font-size: var(--font-headline-large-size); line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: var(--font-title-large-size); line-height: 1.27; margin-bottom: 0.75rem; }
p { color: var(--ink); opacity: 0.9; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: var(--font-weight-bold); color: var(--ink); }
a { color: var(--ink); text-decoration: none; transition: opacity 0.3s ease; font-weight: var(--font-weight-medium); }
a:hover, a:focus-visible { opacity: 0.7; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; border-radius: 2px; }

.skip-link { position: absolute; top: -100px; left: 0; background: var(--ink); color: var(--text-light); padding: 0.5rem 1rem; z-index: 10000; transition: top 0.3s; font-weight: var(--font-weight-bold); }
.skip-link:focus { top: 0; }

/* --- LAYOUT & STRUCTURE --- */
main { padding-top: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: clamp(40px, 6vw, 96px) 5vw; }
.text-center { text-align: center; }
.subtitle { font-family: var(--font-family-base); font-size: 1.1875rem; max-width: 750px; margin: 1rem auto 0; line-height: 1.7; opacity: 0.95; }
.section-subtitle { margin-bottom: 2.5rem; }

.intro-textbox {
  background: rgba(var(--ink-rgb), 0.03);
  padding: 1rem 1.5rem;
  border-radius: calc(var(--radius) / 2);
  display: inline-block;
  text-shadow: 0 1px 1px hsla(0, 0%, 100%, 0.6);
  border: 1px solid rgba(var(--ink-rgb), 0.05);
  box-shadow: inset 0 1px 3px rgba(var(--ink-rgb), 0.05);
  max-width: 100%;
}

.grid-2-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.text-column { text-align: left; }
.text-column h2, .text-column .subtitle { margin-left: 0; text-align: left; }

.heading-3d {
  color: var(--text-light);
  text-shadow: 0 2px 3px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.15), 0 8px 15px rgba(0,0,0,0.2);
  mix-blend-mode: difference;
}
.heading-gap { margin-bottom: clamp(16px, 2.5vh, 28px); }
.icon-float { animation: float 6s ease-in-out infinite; display: inline-block; }

/* --- HEADER / NAVIGATION --- */
#main-header { position: fixed; top: 0; width: 100%; z-index: 999; padding: 1.5rem; background: hsla(0, 0%, 96%, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: box-shadow 0.4s ease; }
#main-header.scrolled { box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.header-logo { display: flex; align-items: center; gap: 0.75rem; font-size: var(--font-title-large-size); font-weight: var(--font-weight-bold); color: var(--ink); transition: opacity 0.4s ease; }
.header-logo:hover { opacity: 0.8; }
.header-logo .material-symbols-outlined { font-size: 1.5em; }
#main-header nav ul { list-style: none; display: flex; gap: 1rem; }
#main-header nav a { font-family: var(--font-family-base); color: var(--ink); font-size: var(--font-body-medium-size); padding: 0.5rem; transition: opacity 0.3s ease; position: relative; font-weight: var(--font-weight-medium); opacity: 0.85; display: flex; align-items: center; }
#main-header nav a:hover { opacity: 1; }
#main-header nav a.active { opacity: 1; }
#main-header nav a.active::after { content: ''; position: absolute; bottom: 0; left: 0.5rem; right: 0.5rem; height: 2px; background-color: var(--ink); }
.language-switcher button { background: none; border: none; cursor: pointer; padding: 0.5rem; font-size: var(--font-body-medium-size); color: var(--ink); opacity: 0.7; transition: opacity 0.3s; }
.language-switcher button:hover { opacity: 1; }
.language-switcher button.active { opacity: 1; font-weight: var(--font-weight-bold); }

/* Dropdown Navigation */
#main-header nav .has-dropdown { position: relative; }
#main-header nav .has-dropdown > a::after {
    content: 'expand_more';
    font-family: 'Material Symbols Outlined';
    font-size: 1.2em;
    vertical-align: middle;
    margin-left: 4px;
    font-weight: 400;
    transition: transform 0.3s var(--animation-ease);
}
#main-header nav .has-dropdown:hover > a::after {
    transform: rotate(180deg);
}
#main-header nav .dropdown {
    position: absolute;
    top: 120%; /* Position below the parent link */
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg1);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: var(--shadow-medium);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--animation-ease), top 0.3s var(--animation-ease), visibility 0.3s;
    z-index: 1000;
}
#main-header nav .has-dropdown:hover .dropdown,
#main-header nav .has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
#main-header nav .dropdown li {
    width: 100%;
}
#main-header nav .dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    width: 100%;
    opacity: 0.85;
}
#main-header nav .dropdown a:hover {
    background-color: rgba(var(--ink-rgb), 0.05);
}
#main-header nav .dropdown a::after {
    content: none; /* remove active indicator from dropdown items */
}

/* --- HERO --- */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 8rem 1.5rem 2rem; }
.hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-video-container.loaded { opacity: 1; }
#hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(30, 26, 22, 0.85) 0%, rgba(30, 26, 22, 0.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; text-align: left; }
.hero-text-content { max-width: 650px; }
.hero-greeting { color: var(--text-light); opacity: 0.8; margin-bottom: 0.5rem; font-size: var(--font-body-large-size); }
.hero-subtitle { font-size: clamp(1.1rem, 0.9rem + 1vw, 1.375rem); margin: 1.5rem 0 2.5rem; font-family: var(--font-family-base); color: var(--text-light); font-weight: var(--font-weight-regular); opacity: 0.9; max-width: 550px; text-align: left; }

/* --- CTA BUTTONS --- */
.cta-button { padding: 12px 24px; border-radius: 999px; font-family: var(--font-family-base); font-size: var(--font-label-small-size); font-weight: var(--font-weight-medium); cursor: pointer; transition: all .3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--ink); margin-top: 1rem; text-align: center; }
.cta-button .material-symbols-outlined { font-size: 1.5em; }
.cta-group.horizontal { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-primary { background: var(--ink); color: var(--text-light); }
.cta-primary:hover { background: transparent; color: var(--ink); }
.cta-secondary { background: transparent; color: var(--ink); }
.cta-secondary:hover { background: var(--ink); color: var(--text-light); }
.hero-section .cta-primary { background: var(--text-light); color: var(--ink); border-color: var(--text-light); }
.hero-section .cta-primary:hover { background: transparent; border-color: var(--text-light); color: var(--text-light); }

/* --- CARD --- */
.card { background: var(--text-light); border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); border-radius: var(--radius); padding: var(--card-padding); box-shadow: 0 2px 12px rgb(0 0 0 / 6%), 0 0 35px rgba(var(--ink-rgb), 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: left; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium), 0 0 45px rgba(var(--ink-rgb), 0.15); }
.card h3, .card strong { color: var(--ink); }
.card p { color: var(--ink); opacity: 0.8; }
.card a { color: var(--ink); }

/* --- SPECIFIC SECTIONS --- */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 4rem; }
.usp-grid .material-symbols-outlined { font-size: 2.5rem; color: var(--ink); margin-bottom: 1rem; }
.bakery-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); gap: 1.5rem; margin: 4rem 0; height: 500px; }
.bakery-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.bakery-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bakery-gallery figure:hover img { transform: scale(1.05); }
.bakery-gallery .main-image { grid-column: 1 / 4; grid-row: 1 / 3; }
.bakery-gallery .side-image-1 { grid-column: 4 / 5; grid-row: 1 / 2; }
.bakery-gallery .side-image-2 { grid-column: 4 / 5; grid-row: 2 / 3; }
.single-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-medium); }
.single-image img { width: 100%; height: 100%; object-fit: cover; }
.tradition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2.5rem; margin: 3rem auto; text-align: left; align-items: stretch; max-width: 900px; }
.tradition-card h3 { margin-bottom: 1.5rem; }
.tradition-cta-container { margin-top: 3rem; }
.tradition-image { width: 100%; height: 250px; object-fit: cover; margin-top: 1.5rem; border-radius: var(--radius); }
.dish-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.dish-list-icons li { position: relative; padding: 0.7rem 0 0.7rem 2.5rem; font-weight: var(--font-weight-medium); font-size: var(--font-body-large-size); }
.dish-list-icons li::before { content: 'restaurant'; font-family: 'Material Symbols Outlined'; position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0.2; font-size: 1.8rem; transition: all 0.3s ease; }
.dish-list-icons li:hover::before { opacity: 0.5; transform: translateY(-50%) scale(1.1); }

#catering .steps-column .single-image { display: none; }

#kakemeny {
  position: relative;
  background-image: linear-gradient(rgba(30, 26, 22, 0.85), rgba(30, 26, 22, 0.85)), url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?q=80&w=1200');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#kakemeny h2, #kakemeny .subtitle, #kakemeny p, #kakemeny li, #kakemeny a, #kakemeny strong { color: var(--text-light); }

.elegant-cake-menu { background: rgba(0,0,0,0.25); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3.5rem); box-shadow: var(--shadow-medium), 0 0 40px rgba(255,255,255,0.1); margin-top: 4rem; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.15); }
.cake-menu-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.elegant-cake-menu .cake-category h3 { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.25); margin-bottom: 1rem; color: var(--text-light); }
.elegant-cake-menu .cake-category h3 .material-symbols-outlined { font-size: 1.5em; }
.elegant-cake-menu p { font-size: var(--font-body-medium-size); margin-bottom: 1.5rem; opacity: 0.95; }
.cake-list { list-style: none; padding-left: 1rem; }
.cake-list li { margin-bottom: 0.75rem; padding-left: 1.5rem; position: relative; opacity: 0.95; }
.cake-list li::before { content: '•'; position: absolute; left: 0; opacity: 0.8; color: var(--text-light); }
.partner-link { margin-top: 3rem; }
#kakemeny .partner-link a { font-weight: var(--font-weight-bold); }
#kakemeny .partner-link a:hover { opacity: 1; text-decoration: underline; }

.catering-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.catering-card .card-image-container { height: 220px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; margin: calc(var(--card-padding) * -1) calc(var(--card-padding) * -1) 1.5rem; }
.catering-card .card-image-container img { width: 100%; height: 100%; object-fit: cover; }
.catering-card .card-text-content { display: flex; flex-direction: column; flex-grow: 1; }
.catering-card h3 { margin-bottom: 0.5rem; }
.catering-card p { font-size: var(--font-body-medium-size); }
.catering-card .info { margin-top: auto; padding-top: 1rem; font-size: 0.8rem; opacity: 0.7; }
.catering-card .price { font-size: 1.75rem; font-weight: var(--font-weight-bold); color: var(--ink); text-align: right; }

/* Accordion Menu */
.new-accordion-menu { max-width: 900px; margin: 3rem auto 0; border: none; }
.new-accordion-menu details { border-bottom: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); }
.new-accordion-menu details:first-of-type { border-top: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); }
.new-accordion-menu summary { font-family: var(--font-family-heading); font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: var(--font-weight-medium); padding: 2rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: opacity 0.2s ease; gap: 1rem; }
.new-accordion-menu summary:hover { opacity: 0.7; }
.new-accordion-menu summary::-webkit-details-marker { display: none; }
.new-accordion-menu summary::after { content: '+'; font-size: 2.5rem; line-height: 1; font-weight: 300; transition: transform 0.4s var(--animation-ease); }
.new-accordion-menu details[open] summary::after { transform: rotate(45deg); }
.new-menu-content { padding: 0 0 2rem; }
details[open] .new-menu-content { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.new-menu-content .description { font-size: var(--font-body-medium-size); opacity: 0.8; margin-top: 0.25rem; }
.new-menu-content .price { font-weight: var(--font-weight-medium); font-size: var(--font-body-medium-size); white-space: nowrap; margin-left: 1rem; text-align: right; }
.menu-item-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 1rem 0; border-bottom: 1px dotted color-mix(in oklab, var(--ink) 15%, transparent); }
.menu-item-row:last-child { border-bottom: none; }
.section-footer-info { margin-top: 4rem; }
.practical-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 1.5rem; background-color: var(--text-light); padding: 2rem; border-radius: var(--radius); border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); }
.info-item { display: flex; align-items: center; gap: 0.75rem; font-size: var(--font-body-medium-size); }

/* --- CONTACT & REVIEWS --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; align-items: stretch; }
.facilities-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem;}
.facilities-list li { display: flex; align-items: center; gap: 0.75rem; }
#reviews .card { max-width: 600px; margin: 2rem auto 0; }
.stars { font-size: 2rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.stars span { color: var(--star-gold); }
.map-container { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; height: 100%; border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1); }

#kontakt .cta-primary {
  background-color: #111;
  border-color: #111;
  color: #fff;
}
#kontakt .cta-primary:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
#kontakt .cta-secondary:hover {
    background-color: #eee;
    color: #111;
    border-color: #ddd;
}

/* --- FAQ --- */
.faq-container { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.faq-item { background: var(--text-light); border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); border-radius: var(--radius); transition: all 0.3s ease; }
.faq-item[open] { border-color: var(--ink); box-shadow: var(--shadow-subtle); }
.faq-question { font-family: var(--font-family-heading); font-size: 1.125rem; cursor: pointer; padding: 1.25rem 1.5rem; font-weight: var(--font-weight-medium); color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; width: 100%; }
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { width: 20px; height: 20px; position: relative; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background-color: var(--ink); transform: translate(-50%, -50%); transition: transform 0.3s ease; }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 1.5rem 1.5rem; }

/* --- FOOTER --- */
footer { background: hsl(36, 43%, 15%); padding: 2.5rem 1.5rem 2rem; color: var(--text-light); }
.footer-heading { color: var(--text-light); font-family: var(--font-family-base); font-weight: var(--font-weight-bold); letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 1rem; opacity: 0.9; }
.footer-link { color: var(--text-light); opacity: 0.7; }
.footer-link:hover, .footer-link:focus { opacity: 1; text-decoration: underline; outline-color: var(--text-light); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.footer-grid p, .footer-grid address { color: var(--text-light); opacity: 0.7; font-size: 0.9rem; font-style: normal; margin-bottom: 0; }
.copyright-text { text-align: center; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.copyright-text p { font-size: 0.8rem; opacity: 0.8; line-height: 1.8; }
.copyright-text .mobile-break { display: none; }
.copyright-text a { opacity: 0.8; }
.copyright-text a:hover { opacity: 1; }

/* --- MISC & HELPERS --- */
.sticky-cta-bar { position: fixed; bottom: 0; left: 0; width: 100%; height: var(--mobile-height); background: var(--text-light); z-index: 1000; display: none; align-items: center; justify-content: space-around; padding: 0.5rem; border-top: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
.sticky-cta-bar .cta-button { width: 48%; padding: 0.75rem 1rem; font-size: var(--font-label-small-size); margin-top: 0; }
.consent-modal { position: fixed; bottom: 1rem; left: 1rem; background: var(--text-light); z-index: 10000; padding: 1rem 1.5rem; border-radius: var(--radius); max-width: calc(100% - 2rem); box-shadow: var(--shadow-medium); border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); }
.consent-modal.hidden { display: none; }
.exit-intent-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(30, 26, 22, 0.7); backdrop-filter: blur(5px); z-index: 10000; display: none; justify-content: center; align-items: center; }
.exit-intent-content { max-width: 400px; padding: 3rem; text-align: center; position: relative; }
.exit-intent-content #exit-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.takeaway-steps { list-style-type: none; counter-reset: step-counter; padding-left: 0; text-align: left; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.takeaway-steps li { counter-increment: step-counter; display: flex; align-items: flex-start; background: var(--text-light); padding: 1.5rem; border-radius: var(--radius); border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); box-shadow: var(--shadow-subtle); }
.takeaway-steps li::before { content: counter(step-counter); margin-right: 1.5rem; background: var(--ink); color: var(--text-light); width: 40px; height: 40px; border-radius: 50%; display: inline-grid; place-items: center; font-weight: var(--font-weight-bold); flex-shrink: 0; font-size: 1.2rem; animation: float 6s ease-in-out infinite; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  #main-header nav { display: none; }
  .sticky-cta-bar { display: flex; }
  main { padding-bottom: var(--mobile-height); }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section-padding { padding: 5rem 1.5rem; }
  .hero-content { padding: 0 1rem; }
  .hero-text-content { text-align: center; }
  .hero-subtitle { margin: 1.5rem auto 2.5rem; text-align: center; }
  .hero-section::before { background: linear-gradient(rgba(30, 26, 22, 0.6), rgba(30, 26, 22, 0.8)); }
  .cta-group { display: flex; flex-direction: column; gap: 1rem; align-items: center; width: 100%; max-width: 350px; margin: 0 auto; }
  .cta-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid div { margin-bottom: 2rem; }
  .copyright-text .mobile-break { display: block; }
  .grid-2-col { grid-template-columns: 1fr; gap: 2.5rem; }
  #catering .single-image { margin-top: 2rem; }
  .grid-2-col.reverse-on-mobile > :first-child { order: 2; }
  .grid-2-col.reverse-on-mobile > :last-child { order: 1; }
  .text-column, .text-column h2, .text-column .subtitle { text-align: center; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .bakery-gallery { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .bakery-gallery .main-image, .bakery-gallery .side-image-1, .bakery-gallery .side-image-2 { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .practical-info-grid { grid-template-columns: 1fr; text-align: center; }
  .info-item { justify-content: center; }
  .cake-menu-grid { grid-template-columns: 1fr; }
}