/* =========================================================
   regret.less — site.css (clean rewrite)
   Matches the original template layout + tile hover animation
   ========================================================= */

/* ===== Design tokens ===== */
:root{
  --bg:#110f17;
  --text:#ffffff;
  --accent:#f9a356;
  --panel:#110f17;
  --panelWidth: 380px;

  /* keep content from exploding on ultrawide */
  --contentMax: 1404px;
  --contentPad: 20px;

  /* tile animation bars (template uses black) */
  --tileBar: var(--accent); /* = #f9a356 */
  --tileBarSize: 13px;

  /* title placement */
  --titlePad: 28px;
}

/* ===== Reset / base ===== */
*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family: "Teko", sans-serif;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: 1px;
  color: var(--text);

  background: var(--bg) url("/assets/images/bg.jpg") no-repeat top left fixed;
  background-size: cover;
}

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

a{ color:inherit; }

/* ===== Layout ===== */
.site{ position:relative; }

/* Desktop: fixed left panel */
@media (min-width: 1150px){
  .site-header.vertical{
    position: fixed;
    top: 0;
    left: 0;
    width: var(--panelWidth);
    height: 100vh;
    background: var(--panel);
    z-index: 10;
  }

  .site-content{
    margin-left: var(--panelWidth);
    padding-top: 80px;
  }
}

/* Mobile: header becomes normal */
@media (max-width: 1149px){
  .site-header.vertical{
    position: relative;
    width: 100%;
    height: auto;
    background: var(--panel);
  }

  .site-content{
    margin-left: 0;
    padding-top: 20px;
  }
}

/* ===== Left panel ===== */
.header-container,
.header-container_wrap{
  height: 100%;
}

.header-container_wrap{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 18px 0;
}

.site-branding{
  background: var(--accent);
  padding: 18px;
}

.site-logo__link{ display:block; text-decoration:none; }
.site-link__img{ max-width: 180px; height:auto; display:block; }

.main-navigation{ padding: 30px 18px; }

.menu{
  list-style:none;
  margin:0;
  padding:0;
}

.menu-item{ margin: 14px 0; }

.menu a{
  color:#fff;
  text-decoration:none;
  font-size: 21px;
}

.menu a:hover,
.menu-item.current-menu-item a{
  color: var(--accent);
}

.menu-toggle{
  display:none;
  border:0;
  background: transparent;
  color:#fff;
  cursor:pointer;
  padding: 8px 0 18px;
}

.menu-toggle__icon{ font-size: 26px; }

@media (max-width: 767px){
  .menu-toggle{ display:inline-flex; align-items:center; gap:8px; }
  .menu{ display:none; }
  .menu.is-open{ display:block; }
}

.site-footer.vertical-desktop{
  padding: 18px;
  color: #fff;
}
.footer-copyright{ opacity:.9; }

/* ===== Tiles wrapper / centering ===== */
.tiles{ padding-bottom: 80px; }

.tiles-inner{
  width: 100%;
  max-width: var(--contentMax);
  margin: 0 auto;
  padding: 0 var(--contentPad);
}

/* template-like big margins on very wide screens */
@media (min-width: 1800px){
  .tiles-inner{
    padding-left: 234px;
    padding-right: 234px;
  }
}

/* ===== Masonry columns ===== */
.projects-terms-list{
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 50px;
  column-fill: balance;
}

@media (max-width: 900px){
  .projects-terms-list{
    column-count: 1;
    column-gap: 0;
  }
}

.projects-terms-item{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;

  display: inline-block;  /* IMPORTANT in CSS columns */
  width: 100%;
  margin: 0 0 50px;
  vertical-align: top;
}

.inner-wrapper{ position: relative; }

/* =========================================================
   Tile structure
   HTML you have:
   .project-terms-media.border-animation
     a.term-img
       figure.featured-image
         img
         span.cover
         span.hover-content > span.tile-icon
   then .project-terms-content (title)
   ========================================================= */

.project-terms-media{ position: relative; }

/* Make the anchor the positioning context */
.term-img{
  display:block;
  position: relative;
  text-decoration:none;
}

/* Make figure clip overlays */
.featured-image{
  position: relative;
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

/* By default: NO cropping (variable height like masonry) */
.term-img img{
  width: 100%;
  height: auto;
  display:block;
}

/* ---- OPTIONAL (if you ever want SAME rectangle ratio like many templates)
   This WILL crop (object-fit: cover). Uncomment to force a consistent ratio.

.featured-image{
  aspect-ratio: 16 / 10;
}
.term-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
----------------------------------------------------------- */

/* ===== Title overlay (top-left on image) ===== */
.project-terms-content{
  position: absolute;
  top: 12px;      /* was 28px — smaller = higher */
  left: 18px;     /* optional: was 28px */
  z-index: 6;
  margin: 0;
  pointer-events: none;
}

.project-terms-content a{
  pointer-events: auto;
  color: #110f17;           /* template-like dark text */
  text-decoration:none;
}

.project-terms-content a:hover{ color: var(--accent); }

.project-terms-content h5{
  margin:0;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

/* =========================================================
   Hover overlay + TEMPLATE-LIKE border animation (4 bars)
   ========================================================= */

/* Cover (darken on hover) */
.cover{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
  opacity:0;
  transition: opacity .25s ease;
  z-index: 10;
}

/* Hover content overlay (we keep it for bars; icon optional) */
.hover-content{
  position:absolute;
  inset:0;
  z-index: 20;
  pointer-events:none; /* never block clicks */
}

/* If you want NO center icon at all (template style), keep hidden */
.tile-icon{ display:none; }

/* If you DO want a plus icon later, delete the line above and use this:
.tile-icon{
  width:56px; height:56px;
  border-radius:999px;
  background: rgba(255,255,255,.85);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.tile-icon::before{
  content:"+";
  font-size:34px;
  line-height:1;
  color: var(--accent);
  font-weight:300;
}
.hover-content{
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform: scale(.92);
  transition: opacity .25s ease, transform .25s ease;
}
.border-animation:hover .hover-content{
  opacity:1;
  transform: scale(1);
}
*/

/* --- 4 animated bars: left/right on figure, top/bottom on hover-content --- */
.border-animation .featured-image::before,
.border-animation .featured-image::after,
.border-animation .hover-content::before,
.border-animation .hover-content::after{
  content:"";
  position:absolute;
  background: var(--tileBar);
  z-index: 100; /* above cover */
  transition: transform .2s;
}

/* left/right vertical bars */
.border-animation .featured-image::before,
.border-animation .featured-image::after{
  top:0;
  width: var(--tileBarSize);
  height:100%;
  transform: scale3d(1,0,1);
}

.border-animation .featured-image::before{
  left:0;
  transform-origin:50% 100%;
}

.border-animation .featured-image::after{
  right:0;
  transform-origin:50% 0%;
}

/* top/bottom horizontal bars */
.border-animation .hover-content::before,
.border-animation .hover-content::after{
  left:0;
  width:100%;
  height: var(--tileBarSize);
  transform: scale3d(0,1,1);
}

.border-animation .hover-content::before{
  top:0;
  transform-origin:0 50%;
}

.border-animation .hover-content::after{
  bottom:0;
  transform-origin:100% 50%;
}

/* hover state: expand bars + show cover */
.border-animation:hover .featured-image::before,
.border-animation:hover .featured-image::after,
.border-animation:hover .hover-content::before,
.border-animation:hover .hover-content::after{
  transform: scale3d(1,1,1);
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .4s;
}

.border-animation:hover .cover{ opacity:1; }

/* =========================================================
   Small fixes / safety
   ========================================================= */

/* ensure nothing creates a “pause button”/focus overlay on the tile */
.term-img, .term-img *{ -webkit-tap-highlight-color: transparent; }

/* keep text readable on super small screens */
@media (max-width: 420px){
  :root{ --titlePad: 18px; }
  .project-terms-content h5{ font-size: 20px; }
}

/* LOGO */

.site-branding{
  background: var(--accent);
  padding: 0;                 /* bar like the template */
  height: 110px;              /* adjust if needed */
  display: flex;
  align-items: center;        /* vertical centering */
}

.site-logo__link{
  display: inline-flex;
  align-items: center;
  padding-left: 34px;         /* left offset like template */
}

.site-link__img{
  width: 340px;   /* try 260–340 */
  height: auto;
  display: block;
}

.site-branding .site-link__img{
  width: 250px;      /* try 260–340 */
  max-width: none;   /* IMPORTANT: remove the 180px cap */
  height: auto;
  display: block;
}

@media (max-width: 320px){
  .site-branding .site-link__img{
    width: 220px;
  }
}

/* ABOUT SECTION */


/* ===== ABOUT page centering ===== */
.about-section{
  padding: 80px 0;                 /* same vibe as tiles top padding */
}

.about-inner{
  width: 100%;
  max-width: 980px;                /* adjust: 900–1100 depending on taste */
  margin: 0 auto;                  /* centers the whole block */
  padding: 0 40px;                 /* side breathing room */
}

/* Title style similar to template */
.about-title{
  margin: 0 0 14px;
  font-size: 60px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* Make the text block not stick to the left edge */
.about-copy{
  margin-top: 18px;
}

/* Optional: better readability over background */
.about-inner{
  position: relative;
  z-index: 1;
}

.about-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}
.about-section{
  position: relative;
}

/* Mobile tweaks */
@media (max-width: 900px){
  .about-inner{
    max-width: 720px;
    padding: 0 20px;
  }
  .about-title{
    font-size: 44px;
    letter-spacing: 4px;
  }
}


/* CONTACT */

/* =========================
   CONTACT page (template vibe)
========================= */

.contact-page{
  padding: 70px 0 90px;
}

.contact-inner{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact-title{
  margin: 0 0 28px;
  font-size: 64px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}

.contact-card{
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  padding: 26px 26px 22px;
  background: rgba(17,15,23,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
}

.contact-lead{
  margin: 0 0 18px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-form .field{
  margin-bottom: 14px;
}

.contact-form label{
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: #fff;
  outline: none;
  font-family: inherit;
  letter-spacing: 1px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(249,163,86,0.8);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #110f17;
  font-family: inherit;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn:hover{
  filter: brightness(1.05);
}

.contact-meta{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.8;
  opacity: 0.9;
}

.contact-meta a{
  color: var(--accent);
  text-decoration: none;
}
.contact-meta a:hover{
  text-decoration: underline;
}

/* honeypot hidden */
.hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 900px){
  .contact-title{ font-size: 48px; letter-spacing: 6px; }
  .contact-card{ padding: 18px; }
}

/* =========================================================
   regret.less. home landing page
   ========================================================= */

.regretless-home,
.regretless-home *{
  letter-spacing: 0;
}

.regretless-home{
  --home-bg: #070707;
  --home-panel: #0d0d0d;
  --home-ink: #f8f5ef;
  --home-muted: #cbc3b8;
  --home-soft: #f5eee6;
  --home-line: rgba(255,255,255,.14);
  --home-orange: #ff8d3f;
  --home-orange-dark: #c95f22;
  --home-max: 1180px;
  margin: 0;
  background: var(--home-bg);
  color: var(--home-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.regretless-home img{
  width: 100%;
  height: auto;
}

.regretless-home a{
  color: inherit;
  text-decoration: none;
}

.home-page{
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(255,141,63,.16), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #101010 48%, #050505 100%);
}

.home-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: #050505;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.brand-bar{
  min-height: 108px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: linear-gradient(135deg, #ff8f3e 0%, #ff792f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-mark{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-name{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 68px);
  line-height: .82;
  white-space: nowrap;
}

.brand-line{
  margin-top: 8px;
  font-size: clamp(12px, 1.9vw, 17px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.home-menu-button{
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  align-content: center;
  gap: 7px;
  cursor: pointer;
  padding: 8px;
}

.home-menu-button span{
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
}

.home-nav{
  background: #070707;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.home-nav ul{
  max-width: var(--home-max);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 34px);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 7vw, 96px);
  overflow-x: auto;
  scrollbar-width: none;
}

.home-nav ul::-webkit-scrollbar{
  display: none;
}

.home-nav a{
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-nav a:hover,
.home-nav a:focus-visible{
  color: var(--home-orange);
}

.home-nav .is-active a{
  color: var(--home-orange);
}

.nav-short{
  display: none;
}

.hero-section{
  min-height: min(760px, calc(100vh - 176px));
  border-bottom: 1px solid var(--home-line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.73) 42%, rgba(0,0,0,.25) 100%),
    url("/assets/images/bg.jpg") center/cover no-repeat;
}

.hero-inner{
  max-width: var(--home-max);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px) clamp(20px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(330px, 1.18fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
}

.section-kicker{
  margin: 0 0 8px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  text-transform: uppercase;
}

.hero-copy h1{
  margin: 0;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(72px, 11vw, 134px);
  font-weight: 400;
  line-height: .78;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy h1::first-line{
  color: #fff;
}

.hero-copy h1{
  text-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.hero-lead{
  max-width: 460px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.hero-list{
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
}

.hero-list .material-icons{
  color: var(--home-orange);
  font-size: 21px;
}

.primary-button,
.secondary-button,
.outline-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  max-width: 100%;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: "Teko", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.primary-button{
  margin-top: 34px;
  background: var(--home-orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255,141,63,.26);
}

.primary-button:hover,
.primary-button:focus-visible{
  background: #ffa062;
}

.primary-button .material-icons,
.secondary-button .material-icons{
  font-size: 21px;
}

.hero-media{
  position: relative;
  min-height: clamp(420px, 54vw, 630px);
}

.fridge-visual{
  position: absolute;
  inset: 0 0 0 18%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(90deg, rgba(255,255,255,.16), transparent 10%, transparent 90%, rgba(255,255,255,.14)),
    linear-gradient(180deg, #0d0f11 0%, #050606 100%);
  box-shadow: inset 0 0 40px rgba(255,255,255,.08), 0 22px 70px rgba(0,0,0,.55);
}

.fridge-visual::before{
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 18px;
  width: 8px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.9), transparent);
  filter: blur(.5px);
  opacity: .76;
}

.fridge-sign{
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  min-width: 230px;
  padding: 18px 20px;
  background: rgba(0,0,0,.72);
  border-left: 8px solid var(--home-orange);
}

.fridge-sign strong{
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.fridge-sign span{
  display: block;
  margin-top: 8px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.fridge-shelves{
  position: absolute;
  inset: 146px 34px 34px 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 18px 20px;
  align-content: end;
}

.fridge-shelves::before,
.fridge-shelves::after{
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  height: 1px;
  background: rgba(255,255,255,.26);
}

.fridge-shelves::before{
  top: 32%;
}

.fridge-shelves::after{
  top: 66%;
}

.fridge-shelves img{
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 6px;
  opacity: .9;
  filter: saturate(1.06) brightness(.88);
  transform: perspective(380px) rotateY(-4deg);
}

.hero-tray{
  position: absolute;
  left: 0;
  bottom: clamp(34px, 7vw, 72px);
  z-index: 3;
  width: min(48vw, 430px);
  min-width: 265px;
  margin: 0;
  transform: rotate(-8deg);
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.58));
}

.hero-tray img{
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.fresh-badge{
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 4;
  width: clamp(136px, 17vw, 186px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,141,63,.78);
  border-radius: 50%;
  background: rgba(0,0,0,.82);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  color: #fff;
}

.fresh-badge .material-icons{
  color: var(--home-orange);
  font-size: 36px;
}

.fresh-badge strong{
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}

.section-inner{
  max-width: var(--home-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) clamp(20px, 4vw, 34px);
}

.steps-section{
  background: #070707;
  border-bottom: 1px solid var(--home-line);
}

.steps-section h2,
.meals-section h2,
.locations-section h2{
  margin: 0;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.steps-section h2{
  text-align: center;
}

.steps-grid{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article{
  position: relative;
  min-height: 150px;
  padding: 22px 18px;
  text-align: center;
}

.steps-grid article:not(:last-child)::after{
  content: "arrow_forward";
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  color: var(--home-orange);
  font-family: "Material Icons";
  font-size: 28px;
  line-height: 1;
}

.steps-grid .material-icons{
  color: var(--home-orange);
  font-size: 46px;
}

.steps-grid h3{
  margin: 12px 0 4px;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.steps-grid p{
  max-width: 230px;
  margin: 0 auto;
  color: var(--home-muted);
  font-size: 15px;
}

.meals-section{
  background: var(--home-soft);
  color: #111;
  text-align: center;
}

.meals-section .section-kicker{
  margin-bottom: 4px;
}

.meal-grid{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.meal-card{
  overflow: hidden;
  border-radius: 8px;
  background: #e8ded4;
  box-shadow: 0 18px 34px rgba(0,0,0,.12);
}

.meal-card img{
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.meal-info{
  min-height: 88px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
}

.meal-info h3{
  margin: 0;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}

.meal-info span{
  width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #090909;
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  font-size: 12px;
  line-height: 1.05;
  text-align: center;
}

.meal-info strong{
  display: block;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: .9;
}

.secondary-button{
  margin-top: 34px;
  border: 1px solid var(--home-orange);
  color: var(--home-orange-dark);
  background: transparent;
}

.secondary-button:hover,
.secondary-button:focus-visible{
  background: #fff;
}

.locations-section{
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(340px, 1.08fr);
  background: #070707;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid var(--home-line);
}

.location-copy{
  max-width: 610px;
  justify-self: end;
  padding: clamp(46px, 6vw, 78px) clamp(24px, 5vw, 60px);
}

.location-copy p:not(.section-kicker){
  max-width: 420px;
  margin: 14px 0 24px;
  color: #e3ddd6;
  font-size: 18px;
}

.location-card{
  max-width: 440px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.03);
}

.location-card:hover,
.location-card:focus-visible{
  border-color: rgba(255,141,63,.74);
}

.location-card .material-icons{
  color: var(--home-orange);
}

.location-card strong{
  display: block;
  font-family: "Teko", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.location-card small{
  display: block;
  margin-top: 7px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.outline-button{
  margin-top: 16px;
  min-width: 260px;
  border: 1px solid rgba(255,255,255,.44);
  color: #fff;
}

.outline-button:hover,
.outline-button:focus-visible{
  border-color: var(--home-orange);
  color: var(--home-orange);
}

.location-visual{
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(7,7,7,.06), rgba(7,7,7,.62)),
    linear-gradient(135deg, #1a1a1a 0%, #090909 72%);
}

.club-lines{
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 115px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 86px);
  opacity: .74;
  transform: perspective(620px) rotateX(58deg) translateY(80px) scale(1.35);
  transform-origin: bottom;
}

.location-fridge{
  position: absolute;
  right: clamp(28px, 9vw, 120px);
  bottom: 0;
  width: min(285px, 42vw);
  min-width: 220px;
  height: 360px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(90deg, rgba(255,255,255,.14), transparent 18%, transparent 84%, rgba(255,255,255,.14)),
    #0a0b0c;
  box-shadow: 0 28px 58px rgba(0,0,0,.62);
}

.location-fridge::before{
  content: "";
  position: absolute;
  top: 76px;
  bottom: 20px;
  left: 18px;
  width: 6px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.86), transparent);
}

.location-fridge strong{
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.location-fridge span{
  display: block;
  margin-top: 5px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.location-fridge div{
  margin-top: 24px;
  margin-left: 24px;
  display: grid;
  gap: 14px;
}

.location-fridge img{
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: 6px;
  opacity: .88;
}

.benefits-section{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #070707;
}

.benefit-item{
  min-height: 188px;
  padding: 28px clamp(16px, 3vw, 34px);
  text-align: center;
  border-right: 1px solid var(--home-line);
}

.benefit-item:last-child{
  border-right: 0;
}

.benefit-item .material-icons{
  color: var(--home-orange);
  font-size: 40px;
}

.benefit-item h2{
  margin: 12px 0 6px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-item p{
  max-width: 240px;
  margin: 0 auto;
  color: var(--home-muted);
  font-size: 14px;
}

.home-footer{
  min-height: 58px;
  padding: 18px 20px;
  background: #070707;
  color: var(--home-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--home-line);
  font-size: 14px;
}

.home-footer a{
  color: #fff;
}

@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-media{
    min-height: 520px;
  }

  .fridge-visual{
    left: 12%;
  }

  .hero-tray{
    width: min(58vw, 390px);
  }

  .meal-grid,
  .benefits-section{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-section{
    grid-template-columns: 1fr;
  }

  .location-copy{
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 680px){
  .brand-bar{
    min-height: 96px;
    padding: 18px 18px;
  }

  .brand-name{
    font-size: clamp(38px, 12vw, 52px);
  }

  .brand-line{
    font-size: 12px;
  }

  .home-nav ul{
    min-height: 58px;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    overflow-x: visible;
  }

  .home-nav a{
    font-size: 16px;
  }

  .nav-full{
    display: none;
  }

  .nav-short{
    display: inline;
  }

  .home-header.nav-closed .home-nav{
    display: none;
  }

  .hero-section{
    min-height: auto;
  }

  .hero-inner{
    padding-top: 34px;
  }

  .hero-copy h1{
    font-size: clamp(66px, 21vw, 92px);
  }

  .hero-lead{
    font-size: 18px;
  }

  .hero-media{
    min-height: 460px;
  }

  .fridge-visual{
    inset: 0 0 0 18%;
  }

  .fridge-sign{
    top: 24px;
    right: 18px;
    min-width: 180px;
    padding: 14px 16px;
  }

  .fridge-sign strong{
    font-size: 27px;
  }

  .fridge-sign span{
    font-size: 18px;
  }

  .fridge-shelves{
    inset: 126px 20px 28px 42px;
    gap: 12px;
  }

  .hero-tray{
    width: min(68vw, 318px);
    min-width: 230px;
    bottom: 48px;
  }

  .fresh-badge{
    right: 6px;
    bottom: 18px;
    width: 128px;
  }

  .steps-grid,
  .meal-grid,
  .benefits-section{
    grid-template-columns: 1fr;
  }

  .steps-grid article:not(:last-child)::after{
    top: auto;
    right: 50%;
    bottom: -20px;
    transform: translateX(50%) rotate(90deg);
  }

  .meal-info{
    min-height: 84px;
  }

  .location-visual{
    min-height: 360px;
  }

  .location-fridge{
    right: 22px;
    width: 238px;
    min-width: 0;
    height: 320px;
  }

  .benefit-item{
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }
}

@media (max-width: 390px){
  .brand-line{
    white-space: normal;
  }

  .home-nav ul{
    gap: 8px;
    padding: 0 10px;
  }

  .home-nav a{
    font-size: 15px;
  }

  .primary-button,
  .secondary-button,
  .outline-button{
    width: 100%;
    font-size: 22px;
  }

  .meal-info{
    grid-template-columns: 1fr 70px;
  }

  .meal-info span{
    width: 70px;
  }
}

/* Unterseiten */
.sub-page{
  min-height: 100vh;
}

.sub-main{
  max-width: var(--home-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 76px) clamp(20px, 4vw, 34px) clamp(60px, 8vw, 96px);
}

.sub-hero{
  max-width: 820px;
  margin-bottom: 30px;
}

.sub-hero h1{
  margin: 0;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.sub-hero p:not(.section-kicker){
  max-width: 620px;
  margin: 16px 0 0;
  color: #eee6de;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.info-grid,
.contact-layout,
.map-list-layout{
  display: grid;
  gap: 18px;
}

.info-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.contact-panel,
.clean-form,
.gym-card{
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.info-card{
  min-height: 220px;
  padding: 24px;
}

.info-card .material-icons{
  color: var(--home-orange);
  font-size: 36px;
}

.info-card h2,
.contact-panel h2,
.gym-card h2{
  margin: 14px 0 8px;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.info-card p,
.gym-card p{
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
}

.contact-layout{
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  align-items: start;
}

.contact-panel,
.clean-form{
  padding: 24px;
}

.detail-list{
  margin: 0;
  display: grid;
  gap: 16px;
}

.detail-list div,
.gym-card dl div{
  display: grid;
  gap: 4px;
}

.detail-list dt,
.gym-card dt{
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.detail-list dd,
.gym-card dd{
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.detail-list a,
.gym-card a{
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,141,63,.7);
  text-underline-offset: 3px;
}

.clean-form{
  display: grid;
  gap: 10px;
}

.clean-form label{
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.clean-form input,
.clean-form textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: rgba(0,0,0,.32);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
}

.clean-form input:focus,
.clean-form textarea:focus{
  border-color: var(--home-orange);
  outline: none;
}

.form-message{
  margin: 0 0 6px;
  padding: 11px 13px;
  border: 1px solid rgba(255,141,63,.62);
  border-radius: 6px;
  background: rgba(255,141,63,.12);
  color: #fff;
}

.turnstile-wrap{
  margin-top: 4px;
}

.form-button{
  width: fit-content;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.map-list-layout{
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
}

.static-map{
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,141,63,.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 68px),
    #111;
}

.static-map::before{
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}

.map-road{
  position: absolute;
  left: -8%;
  right: -8%;
  height: 2px;
  background: rgba(255,255,255,.18);
  transform-origin: center;
}

.map-road-a{
  top: 42%;
  transform: rotate(-12deg);
}

.map-road-b{
  top: 62%;
  transform: rotate(18deg);
}

.map-pin{
  position: absolute;
  left: 46%;
  top: 45%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}

.map-pin .material-icons{
  color: var(--home-orange);
  font-size: 22px;
}

.gym-list{
  display: grid;
  gap: 16px;
}

.gym-card{
  padding: 22px;
}

.gym-card h2{
  margin-top: 0;
}

.gym-card dl{
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.gym-card.is-muted{
  opacity: .82;
}

@media (max-width: 760px){
  .sub-main{
    padding-top: 34px;
  }

  .info-grid,
  .contact-layout,
  .map-list-layout{
    grid-template-columns: 1fr;
  }

  .info-card{
    min-height: 0;
  }

  .static-map{
    min-height: 280px;
  }

  .form-button{
    width: 100%;
  }
}

/* Startseite: Feinschliff nach Mockup */
.regretless-home{
  --home-orange: #ff8a3d;
  --home-soft: #f4eee8;
}

.brand-bar{
  min-height: 102px;
  padding: 20px clamp(42px, 6vw, 66px);
  background: linear-gradient(180deg, #ff8e3b 0%, #ff7f35 100%);
}

.brand-name{
  font-size: clamp(48px, 5vw, 64px);
  line-height: .82;
}

.brand-line{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-size: 14px;
}

.brand-line::before,
.brand-line::after{
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.75);
}

.home-menu-button{
  width: 44px;
  height: 44px;
  gap: 6px;
}

.home-menu-button span{
  height: 3px;
}

.home-nav ul{
  min-height: 54px;
  gap: clamp(34px, 7vw, 90px);
}

.home-nav a{
  min-height: 42px;
  font-size: 23px;
}

.home-nav a[href="/about.php"]::after,
.home-nav a[href="/#meals"]::after,
.home-nav a[href="/partner-gyms.php"]::after{
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.hero-section{
  min-height: 556px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.89) 39%, rgba(0,0,0,.5) 100%),
    #050505;
}

.hero-inner{
  max-width: 853px;
  min-height: 556px;
  padding: 52px 52px 0;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy{
  position: relative;
  z-index: 2;
  align-self: start;
}

.hero-copy .section-kicker{
  display: none;
}

.hero-copy h1{
  display: grid;
  gap: 0;
  margin-top: 0;
  font-size: 67px;
  line-height: .9;
}

.hero-copy h1 span{
  display: block;
}

.hero-copy h1 .accent-line{
  color: var(--home-orange);
}

.hero-lead{
  max-width: 240px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-list{
  margin-top: 19px;
  gap: 7px;
}

.hero-list li{
  gap: 9px;
  font-size: 14px;
}

.hero-list .material-icons{
  font-size: 18px;
}

.primary-button{
  min-height: 50px;
  margin-top: 28px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 22px;
}

.hero-media{
  position: relative;
  min-height: 0;
  margin: 0 -52px 0 -8px;
  overflow: hidden;
  filter: saturate(1.03) contrast(1.03);
}

.hero-media::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, transparent 22%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-sign{
  position: absolute;
  top: 34px;
  right: 38px;
  z-index: 2;
  min-width: 244px;
  padding: 18px 20px 15px;
  background: #050505;
  border-left: 8px solid var(--home-orange);
}

.hero-image-sign strong{
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.hero-image-sign span{
  display: block;
  margin-top: 8px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-media .fresh-badge{
  right: 36px;
  bottom: 34px;
  width: 150px;
  background: #050505;
}

.steps-section .section-inner{
  max-width: 853px;
  padding: 10px 52px 17px;
}

.steps-section h2{
  font-size: 28px;
  line-height: 1;
}

.steps-grid{
  margin-top: 8px;
  gap: 12px;
}

.steps-grid article{
  min-height: 104px;
  padding: 8px 10px 2px;
}

.steps-grid article:not(:last-child)::after{
  right: -18px;
  font-size: 24px;
}

.steps-grid .material-icons{
  font-size: 39px;
}

.steps-grid h3{
  margin-top: 6px;
  font-size: 20px;
}

.steps-grid p{
  max-width: 178px;
  font-size: 12px;
  line-height: 1.35;
}

.meals-section .section-inner{
  max-width: 853px;
  padding: 16px 66px 34px;
}

.meals-section .section-kicker{
  margin-bottom: 2px;
  font-size: 21px;
}

.meals-section h2{
  font-size: 34px;
  line-height: 1;
}

.meal-grid{
  margin-top: 17px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.meal-card{
  position: relative;
  aspect-ratio: .88 / 1;
  border-radius: 7px;
  background: #ded7cf;
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
}

.meal-card img{
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.meal-info{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 65px;
  padding: 10px 70px 10px 13px;
  background: rgba(239,233,226,.92);
  display: block;
}

.meal-info h3{
  font-size: 22px;
  line-height: .92;
}

.meal-info span{
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 59px;
  font-size: 10px;
}

.meal-info strong{
  font-size: 21px;
}

.secondary-button{
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 36px;
  border-radius: 6px;
  color: var(--home-orange);
  font-size: 21px;
}

.locations-section{
  min-height: 255px;
  grid-template-columns: minmax(0, 365px) minmax(0, 488px);
  justify-content: center;
}

.location-copy{
  max-width: none;
  justify-self: stretch;
  padding: 28px 42px 22px 54px;
}

.location-copy .section-kicker{
  display: none;
}

.location-copy h2{
  font-size: 31px;
  white-space: nowrap;
}

.location-copy p:not(.section-kicker){
  max-width: 250px;
  margin: 6px 0 12px;
  font-size: 13px;
  line-height: 1.35;
}

.location-card{
  min-height: 58px;
  padding: 8px 12px;
  border-radius: 6px;
}

.location-card .material-icons{
  font-size: 23px;
}

.location-card strong{
  font-size: 20px;
}

.location-card small{
  margin-top: 4px;
  font-size: 15px;
}

.outline-button{
  min-width: 248px;
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 19px;
}

.location-visual{
  min-height: 255px;
  margin: 0;
}

.location-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,7,7,.18), rgba(7,7,7,.03) 45%, rgba(7,7,7,.44));
  pointer-events: none;
}

.location-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-item{
  min-height: 132px;
  padding: 15px 18px 13px;
}

.benefit-item .material-icons{
  font-size: 30px;
}

.benefit-item h2{
  margin-top: 6px;
  font-size: 18px;
}

.benefit-item p{
  font-size: 11px;
  line-height: 1.36;
}

.home-footer{
  min-height: 42px;
  padding: 10px 20px;
}

@media (min-width: 761px){
  .benefits-section{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 854px){
  .hero-inner,
  .steps-section .section-inner,
  .meals-section .section-inner{
    max-width: 1180px;
  }

  .hero-inner{
    grid-template-columns: minmax(270px, .36fr) minmax(0, .64fr);
    min-height: 620px;
    padding-left: clamp(52px, 6vw, 80px);
    padding-right: clamp(52px, 6vw, 80px);
  }

  .hero-copy h1{
    font-size: clamp(74px, 7.8vw, 108px);
  }

  .hero-lead{
    max-width: 340px;
    font-size: 20px;
  }

  .hero-list li{
    font-size: 16px;
  }

  .hero-media{
    margin-right: calc(clamp(52px, 6vw, 80px) * -1);
  }

}

@media (max-width: 760px){
  .brand-bar{
    min-height: 96px;
    padding: 18px 20px;
  }

  .brand-name{
    font-size: clamp(42px, 12vw, 55px);
  }

  .brand-line{
    font-size: 12px;
  }

  .home-nav ul{
    min-height: 58px;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
  }

  .home-nav a{
    font-size: 16px;
  }

  .home-nav a::after{
    display: none;
  }

  .hero-inner{
    max-width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 37px 20px 0;
  }

  .hero-copy h1{
    font-size: clamp(66px, 21vw, 92px);
  }

  .hero-lead{
    max-width: 345px;
    font-size: 18px;
  }

  .hero-list li{
    font-size: 16px;
  }

  .primary-button{
    width: 100%;
    max-width: 350px;
  }

  .hero-media{
    min-height: 365px;
    margin: 0 -20px;
  }

  .hero-image-sign{
    top: 24px;
    right: 18px;
    min-width: 190px;
    padding: 14px 16px 12px;
  }

  .hero-image-sign strong{
    font-size: 27px;
  }

  .hero-image-sign span{
    font-size: 18px;
  }

  .hero-media .fresh-badge{
    right: 24px;
    bottom: 24px;
    width: 132px;
  }

  .steps-section .section-inner,
  .meals-section .section-inner{
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps-section .section-inner{
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .steps-grid{
    margin-top: 22px;
  }

  .steps-grid article:not(:last-child)::after{
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
  }

  .meal-grid{
    grid-template-columns: 1fr;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .locations-section{
    grid-template-columns: 1fr;
  }

  .location-copy{
    padding: 30px 20px 26px;
  }

  .location-copy p:not(.section-kicker){
    max-width: 340px;
  }

  .location-visual{
    min-height: 230px;
  }
}

/* Beige-Schwarz-Palette gemäss Referenz */
.regretless-home{
  --home-bg: #050505;
  --home-panel: #0b0b0b;
  --home-ink: #f8f4ee;
  --home-muted: #d1c8bd;
  --home-soft: #eee3d5;
  --home-line: rgba(238,227,213,.2);
  --home-orange: #e2bb78;
  --home-orange-dark: #8d672f;
}

.home-page{
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
}

.home-header{
  min-height: 106px;
  display: flex;
  align-items: stretch;
  background: #eee3d5;
  color: #090909;
  box-shadow: 0 1px 0 rgba(0,0,0,.2);
}

.brand-bar{
  min-height: 106px;
  flex: 0 0 auto;
  padding: 0 0 0 clamp(34px, 5vw, 64px);
  background: transparent;
  color: #090909;
}

.brand-mark{
  color: #090909;
}

.brand-name{
  font-size: clamp(48px, 5vw, 62px);
  line-height: 1;
}

.brand-line,
.home-menu-button{
  display: none;
}

.home-nav{
  flex: 1 1 auto;
  border: 0;
  background: transparent;
}

.home-nav ul{
  max-width: none;
  min-height: 106px;
  margin: 0;
  padding: 0 clamp(32px, 5vw, 64px) 0 clamp(34px, 5vw, 68px);
  justify-content: flex-end;
  gap: clamp(26px, 4.2vw, 58px);
  overflow: visible;
}

.home-nav a{
  min-height: 38px;
  border-bottom: 2px solid transparent;
  color: #090909;
  font-size: clamp(19px, 2vw, 23px);
}

.home-nav a:hover,
.home-nav a:focus-visible,
.home-nav .is-active a{
  border-bottom-color: #090909;
  color: #090909;
}

.home-nav a::after{
  content: none !important;
  display: none !important;
}

.hero-copy h1 .accent-line{
  color: var(--home-orange);
}

.hero-list .material-icons,
.steps-grid .material-icons,
.benefit-item .material-icons{
  color: var(--home-orange);
}

.primary-button{
  border: 1px solid #d8c5ad;
  background: #eee3d5;
  color: #090909;
  box-shadow: none;
}

.primary-button:hover,
.primary-button:focus-visible{
  background: #f7efe5;
  color: #090909;
}

.hero-image-sign{
  border-left-color: var(--home-orange);
}

.hero-image-sign span{
  color: var(--home-orange);
}

.hero-media .fresh-badge{
  border-color: rgba(226,187,120,.8);
}

.hero-media .fresh-badge .material-icons{
  color: var(--home-orange);
}

.meals-section{
  background: var(--home-soft);
}

.meals-section .section-kicker{
  color: var(--home-orange-dark);
}

.secondary-button{
  border-color: #151515;
  color: #151515;
}

.secondary-button:hover,
.secondary-button:focus-visible{
  background: #151515;
  color: #f7f0e7;
}

.outline-button{
  border-color: var(--home-orange);
  color: var(--home-orange);
}

.location-card:hover,
.location-card:focus-visible{
  border-color: rgba(226,187,120,.78);
}

.info-card .material-icons,
.detail-list dt,
.gym-card dt,
.map-pin .material-icons{
  color: var(--home-orange);
}

.detail-list a,
.gym-card a{
  text-decoration-color: rgba(226,187,120,.75);
}

.clean-form input:focus,
.clean-form textarea:focus{
  border-color: var(--home-orange);
}

.form-message{
  border-color: rgba(226,187,120,.62);
  background: rgba(226,187,120,.12);
}

.static-map{
  background:
    linear-gradient(135deg, rgba(226,187,120,.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 68px),
    #111;
}

@media (max-width: 760px){
  .home-header{
    display: block;
    min-height: 0;
  }

  .brand-bar{
    min-height: 68px;
    padding: 12px 18px 7px;
  }

  .brand-name{
    font-size: clamp(39px, 12vw, 48px);
  }

  .home-nav{
    border-top: 1px solid rgba(0,0,0,.12);
  }

  .home-nav ul{
    min-height: 48px;
    padding: 0 12px;
    justify-content: space-between;
    gap: 8px;
  }

  .home-nav a{
    min-height: 34px;
    font-size: clamp(14px, 4.2vw, 17px);
  }
}

/* Produktkarussell und Produktübersicht */
.meal-carousel{
  margin-top: 17px;
}

.meal-carousel-viewport{
  overflow: hidden;
  padding: 4px;
  margin: -4px;
}

.meal-carousel-track{
  display: flex;
  column-gap: 20px;
  transition: transform .7s cubic-bezier(.22,.72,.24,1);
  will-change: transform;
}

.meal-carousel .meal-card{
  flex: 0 0 calc((100% - 40px) / 3);
}

.meal-card::before,
.meal-card::after{
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: transform .38s ease, opacity .2s ease;
}

.meal-card::before{
  border-left: 3px solid var(--home-orange);
  border-right: 3px solid var(--home-orange);
  transform: scaleY(0);
  transform-origin: center;
}

.meal-card::after{
  border-top: 3px solid var(--home-orange);
  border-bottom: 3px solid var(--home-orange);
  transform: scaleX(0);
  transform-origin: center;
}

.meal-card:hover::before,
.meal-card:hover::after{
  opacity: 1;
  transform: scale(1);
}

.meal-card img{
  transition: transform .55s cubic-bezier(.2,.72,.2,1), filter .55s ease;
}

.meal-card:hover img{
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.02);
}

.meal-carousel-controls{
  min-height: 42px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel-button{
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #171717;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: #171717;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible{
  background: #171717;
  color: var(--home-soft);
  outline: none;
}

.carousel-button .material-icons{
  font-size: 24px;
}

.carousel-status{
  min-width: 78px;
  color: #493f35;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.products-page .sub-main{
  max-width: var(--home-max);
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.products-grid .meal-card{
  aspect-ratio: .88 / 1;
}

/* Google Maps und automatisch erzeugte Standortliste */
.google-map-shell{
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #111;
}

.google-map,
.google-map iframe{
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.google-map iframe{
  display: block;
  border: 0;
}

.gym-enquiry{
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(226,187,120,.48);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  transition: border-color .2s ease, background .2s ease;
}

.gym-enquiry:hover,
.gym-enquiry:focus-visible{
  border-color: var(--home-orange);
  background: rgba(226,187,120,.08);
}

.gym-enquiry strong,
.gym-enquiry small{
  display: block;
}

.gym-enquiry strong{
  font-family: "Teko", Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.gym-enquiry small{
  margin-top: 5px;
  color: var(--home-muted);
  font-size: 14px;
}

.gym-enquiry .material-icons{
  color: var(--home-orange);
}

.map-info-window{
  max-width: 230px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.map-info-window strong{
  font-size: 15px;
}

.map-info-window p{
  margin: 5px 0 0;
  font-size: 13px;
}

@media (max-width: 900px) and (min-width: 761px){
  .products-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  .meal-carousel .meal-card{
    flex-basis: 100%;
  }

  .products-grid{
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .google-map-shell,
  .google-map,
  .google-map iframe{
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce){
  .meal-carousel-track,
  .meal-card::before,
  .meal-card::after,
  .meal-card img{
    transition: none;
  }
}

/* Kompakter Seitenabschluss */
.sub-page{
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.sub-page .sub-main{
  width: 100%;
  flex: 1 0 auto;
}

.home-footer{
  min-height: 32px;
  padding: 6px 16px;
  gap: 8px;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1.2;
}

/* Lesbarer Kontrast und deutliche Schaltflächenanimation */
.regretless-home .primary-button,
.regretless-home .primary-button:visited{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #eee3d5;
  color: #090909 !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.regretless-home .primary-button::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--home-orange);
  transform: translateX(-105%);
  transition: transform .32s cubic-bezier(.2,.75,.25,1);
}

.regretless-home .primary-button:hover,
.regretless-home .primary-button:focus-visible{
  background: #eee3d5;
  border-color: var(--home-orange-dark);
  color: #090909 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(226,187,120,.24);
}

.regretless-home .primary-button:hover::before,
.regretless-home .primary-button:focus-visible::before{
  transform: translateX(0);
}

.regretless-home .primary-button .material-icons{
  color: #090909;
  transition: transform .24s ease;
}

.regretless-home .primary-button:hover .material-icons,
.regretless-home .primary-button:focus-visible .material-icons{
  transform: translateX(5px);
}

/* Mittige Hauptnavigation und Gym-Owner-CTA */
@media (min-width: 761px){
  .home-header{
    display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
    align-items: stretch;
  }

  .brand-bar{
    grid-column: 1;
    min-width: 0;
  }

  .home-nav{
    grid-column: 2;
    width: auto;
  }

  .home-nav ul{
    min-height: 106px;
    padding: 0;
    justify-content: center;
    gap: clamp(16px, 2.6vw, 34px);
  }
}

.steps-grid article:first-child p{
  max-width: 245px;
}

.gym-owner-cta{
  border-top: 1px solid var(--home-line);
  background: #080808;
}

.gym-owner-cta-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 78px) clamp(20px, 5vw, 56px);
}

.gym-owner-cta .section-kicker{
  margin-bottom: 8px;
}

.gym-owner-cta h2{
  margin: 0;
  display: grid;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 400;
  line-height: .82;
  text-transform: uppercase;
}

.gym-owner-cta h2 span:last-child{
  color: var(--home-orange);
}

.gym-owner-lead{
  max-width: 680px;
  margin: 24px 0 0;
  color: #f2ece4;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
}

.gym-owner-list{
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.gym-owner-list li{
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 19px);
}

.gym-owner-list .material-icons{
  margin-top: 1px;
  color: var(--home-orange);
  font-size: 22px;
}

.gym-owner-cta .primary-button{
  width: fit-content;
  margin-top: 34px;
}

@media (max-width: 760px){
  .home-nav ul{
    gap: 6px;
    padding: 0 9px;
  }

  .home-nav a{
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .steps-grid article:first-child p{
    max-width: 340px;
  }

  .steps-grid article:not(:last-child){
    padding-bottom: 30px;
  }

  .gym-owner-cta-inner{
    padding: 44px 20px 50px;
  }

  .gym-owner-cta h2{
    font-size: clamp(54px, 17vw, 74px);
  }

  .gym-owner-cta .primary-button{
    width: 100%;
  }
}

.meal-info,
.meal-info h3{
  color: #111;
}

.meal-info h3{
  transition: color .25s ease, transform .25s ease;
}

.meal-card:hover .meal-info h3{
  color: #111;
  transform: translateX(4px);
}

.email-reveal{
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(226,187,120,.75);
  text-underline-offset: 3px;
  cursor: pointer;
}

.email-reveal:hover,
.email-reveal:focus-visible{
  color: var(--home-orange);
  outline: none;
}

/* Produktdarstellung und interaktive Deklaration */
.meals-section .meals-title{
  margin: 0;
  color: #171717;
  font-size: clamp(48px, 7vw, 66px);
  line-height: .92;
}

.meal-card{
  border: 0;
  transition: transform .28s cubic-bezier(.2,.72,.2,1), box-shadow .28s ease;
  transform-origin: center;
}

.meal-card::before,
.meal-card::after{
  content: none !important;
}

.meal-card:hover,
.meal-card:focus-within{
  z-index: 5;
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 18px 34px rgba(0,0,0,.2);
}

.meal-card-front,
.meal-detail-panel{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transition: transform .55s cubic-bezier(.2,.72,.2,1);
  transform-style: preserve-3d;
}

.meal-card-front{
  z-index: 1;
  transform: rotateY(0deg);
}

.meal-info{
  transition: opacity .22s ease;
}

.meal-macro-panel,
.meal-detail-panel{
  padding: clamp(20px, 4vw, 32px);
  color: #fff;
}

.meal-macro-panel{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(7,7,7,.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.meal-detail-panel{
  z-index: 2;
  overflow-y: auto;
  background: #0b0b0b;
  transform: rotateY(180deg);
}

.meal-panel-kicker{
  margin: 0 0 5px;
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  text-transform: uppercase;
}

.meal-macro-panel h4,
.meal-detail-panel h4{
  margin: 0;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}

.meal-macro-grid{
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.meal-macro-grid div{
  min-height: 66px;
  padding: 10px 12px;
  border-top: 1px solid rgba(226,187,120,.68);
  background: rgba(255,255,255,.055);
}

.meal-macro-grid dt,
.meal-declaration-list dt{
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.meal-macro-grid dd{
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
}

.meal-macro-grid .meal-macro-fiber{
  grid-column: 1 / -1;
  min-height: 58px;
}

.meal-detail-description{
  margin: 11px 0 0;
  color: #f3eee8;
  font-size: 15px;
  line-height: 1.45;
}

.meal-declaration-list{
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.meal-declaration-list div{
  padding-top: 10px;
  border-top: 1px solid rgba(226,187,120,.5);
}

.meal-declaration-list dd{
  margin: 5px 0 0;
  color: #f3eee8;
  font-size: 13px;
  line-height: 1.42;
}

.meal-ingredients-note{
  display: block;
  margin-top: 8px;
  color: #cfc7be;
  font-size: 12px;
}

.meal-ingredients-list{
  margin: 0;
  padding-left: 18px;
}

.meal-ingredients-list li + li{
  margin-top: 3px;
}

.meal-info span{
  top: 50%;
  right: 12px;
  bottom: auto;
  width: 56px;
  transform: translateY(-50%);
}

.meal-card-action{
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.meal-card-action:focus-visible{
  outline: 3px solid var(--home-orange);
  outline-offset: -6px;
}

.meal-card-interactive.is-macros .meal-macro-panel{
  opacity: 1;
}

.meal-card-interactive.is-macros .meal-info{
  opacity: 0;
}

.meal-card-interactive.is-details .meal-card-front{
  transform: rotateY(-180deg);
}

.meal-card-interactive.is-details .meal-detail-panel{
  transform: rotateY(0deg);
}

@media (hover: hover) and (pointer: fine){
  .meal-card-interactive:not(.is-details):hover .meal-macro-panel{
    opacity: 1;
  }

  .meal-card-interactive:not(.is-details):hover .meal-info{
    opacity: 0;
  }
}

@media (max-width: 760px){
  .steps-grid article:not(:last-child)::after{
    bottom: -10px;
    font-size: 30px;
  }

  .meals-section .meals-title{
    font-size: clamp(48px, 15vw, 64px);
  }

  .meal-card:hover,
  .meal-card:focus-within{
    transform: translateY(-2px) scale(1.012);
  }
}

@media (prefers-reduced-motion: reduce){
  .meal-card,
  .meal-card-front,
  .meal-detail-panel,
  .meal-macro-panel,
  .meal-info{
    transition: none;
  }
}

/* Rechtliche Angaben */
.legal-page .sub-main{
  max-width: 900px;
}

.legal-panel{
  max-width: 720px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.legal-block h2{
  margin: 0 0 16px;
  color: #fff;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.legal-block address{
  color: #f3eee8;
  font-size: 17px;
  font-style: normal;
  line-height: 1.6;
}

.legal-details{
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}

.legal-details div{
  padding-top: 14px;
  border-top: 1px solid rgba(226,187,120,.42);
}

.legal-details dt{
  color: var(--home-orange);
  font-family: "Teko", Arial, sans-serif;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.legal-details dd{
  margin: 6px 0 0;
  color: #f3eee8;
  font-size: 16px;
  line-height: 1.45;
}
