/* ═══════════════════════════════════════════
   FONTS
═══════════════════════════════════════════ */
@font-face {
  font-family: 'MADE TOMMY';
  src: url('MADE-TOMMY-Bold-PERSONAL-USE.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy:        #2C1008;
  --navy-dark:   #1A0805;
  --navy-light:  #4A2018;
  --teal:        #D4A043;
  --teal-dim:    rgba(212,160,67,.2);
  --sky:         #C06030;
  --cream:       #FDF5EC;
  --espresso:    #1A0805;
  --white:       #FFFFFF;
  --grey-light:  #F5E8DC;

  --font-display: 'MADE TOMMY', 'DM Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-card:  0 8px 32px rgba(212,160,67,.15);
  --shadow-hover: 0 16px 48px rgba(212,160,67,.30);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #FDF6EE;
  color: #1A0805;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero staggered reveal */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease var(--d, 0ms), transform .7s ease var(--d, 0ms);
}
.hero-loaded .reveal-hero {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#navbar {
  position: relative;
  z-index: 10;
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 220px;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; margin-left: -4.5rem !important; }
.logo-img { height: 216px; object-fit: contain; }
.logo-dark { display: none; }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal); }

.nav-franchise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  color: var(--navy-dark);
  background: var(--white);
  padding: .75rem 2.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(255,255,255,.25);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-franchise:hover {
  background: var(--teal);
  color: var(--navy-dark);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(212,160,67,.5);
}
.franchise-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
  line-height: 1;
}
.franchise-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}

.btn-nav {
  background: var(--teal) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  padding: 1.1rem 2.6rem !important;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.section-cream  { background: transparent; color: #1A0805; position: relative; overflow: hidden; }
.section-navy   { background: transparent; color: #1A0805; position: relative; overflow: hidden; }
.section-teal   { background: transparent; color: #1A0805; position: relative; overflow: hidden; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.label-navy { color: var(--teal); opacity: 1; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-bg-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(26,8,5,.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section-cream .section-bg-number { color: rgba(26,8,5,.04); }
.section-navy  .section-bg-number { color: rgba(26,8,5,.04); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}

.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  background: linear-gradient(120deg, #1A0805 0%, #2C1008 40%, #8B3520 75%, #C04A20 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  color: var(--white);
}

/* ── Motion Path ── */
.motion-path-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.motion-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.beans-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.falling-bean {
  position: absolute;
  width: 10px;
  height: 6px;
  border-radius: 50%;
  background: #C07830;
  pointer-events: none;
}

.semafor {
  position: absolute;
  left: 3%;
  bottom: 22%;
  z-index: 3;
  transform: scale(1.3);
  transform-origin: bottom left;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.6));
}

.motion-cup,
.motion-bean {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  will-change: transform;
}

/* Running person leg/arm animation */
.runner-svg .leg-l { transform-origin: 16px 28px; animation: legL .35s ease-in-out infinite alternate; }
.runner-svg .leg-r { transform-origin: 16px 28px; animation: legR .35s ease-in-out infinite alternate; }
.runner-svg .arm-l { transform-origin: 16px 14px; animation: legR .35s ease-in-out infinite alternate; }
.runner-svg .arm-r { transform-origin: 16px 14px; animation: legL .35s ease-in-out infinite alternate; }

@keyframes legL {
  from { transform: rotate(-22deg); }
  to   { transform: rotate(18deg); }
}
@keyframes legR {
  from { transform: rotate(18deg); }
  to   { transform: rotate(-22deg); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,67,.18) 0%, transparent 70%);
  top: 50%;
  right: -10vmax;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0 3rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,160,67,.15);
  border: 1px solid rgba(212,160,67,.35);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  padding: .4rem 1.5rem;
  justify-content: center;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  color: #E8A84A;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(232,168,74,.8);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal) !important;
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: #FFC9BE;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,160,67,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-ring { display: none; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.section-video {
  background: var(--navy-dark);
  padding: 0;
}

.hero-video-wrap {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 85vh;
}

.hero-imgs-trio {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  flex-shrink: 0;
}

.hero-img-main {
  flex: 1;
  height: 520px;
}

.hero-img-side {
  flex: 1;
  height: 520px;
}

.hero-img-single {
  flex: 1;
  height: 520px;
}

.hero-img-single .hero-img {
  transform: scale(1.2);
  transform-origin: center center;
}

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

.floating-cup {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.cup-1 { top: 15%;    left: 2%;   animation-delay: 0s;   font-size: 2rem; }
.cup-2 { top: 45%;    left: 1%;   animation-delay: 1.2s; font-size: 1.4rem; }
.cup-3 { bottom: 20%; left: 3%;   animation-delay: 0.6s; font-size: 1.7rem; }
.cup-4 { top: 12%;    right: 2%;  animation-delay: 0.8s; font-size: 1.8rem; }
.cup-5 { top: 42%;    right: 1%;  animation-delay: 2s;   font-size: 1.3rem; }
.cup-6 { bottom: 22%; right: 2%;  animation-delay: 1.5s; font-size: 1.6rem; }

.floating-bean {
  position: absolute;
  width: 28px; height: 16px;
  border-radius: 50%;
  background: var(--espresso);
  animation: float 4s ease-in-out infinite;
}
.floating-bean::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255,255,255,.2);
}
.bean-1 { bottom: 35%; right: 4%;  animation-delay: 1.5s; transform: rotate(20deg); }
.bean-2 { top: 28%;   left: 2%;   animation-delay: 0.8s; transform: rotate(-15deg); width: 20px; height: 12px; }
.bean-3 { bottom: 40%; left: 1%;  animation-delay: 2.5s; transform: rotate(40deg);  width: 22px; height: 13px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 1.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BENTO GRID
═══════════════════════════════════════════ */
.section-bento {
  background: transparent;
  color: #1A0805;
  padding: 5rem 0 1rem;
  position: relative;
  overflow: hidden;
}
.section-bento::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .45;
  z-index: 0;
}
.section-bento::after {
  content: '';
  position: absolute;
  width: 45vmax;
  height: 45vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,67,.08) 0%, transparent 70%);
  top: 50%;
  right: -10vmax;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.section-bento .container { position: relative; z-index: 1; }

/* ── Top 4 cards ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.bento-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
}

.bento-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bento-card:hover .bento-bg-img { transform: scale(1.05); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,5,.85) 0%, rgba(26,8,5,.2) 60%, transparent 100%);
}

.bento-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.bento-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}

.bento-story  { background: var(--navy-dark); }
.bento-photo  { background: var(--navy); }

.bento-story .bento-content h3,
.bento-photo .bento-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .4rem;
}
.bento-story .bento-content p,
.bento-photo .bento-content p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

/* Offer card */
.bento-offer {
  background: var(--teal);
  justify-content: flex-start;
}
.bento-offer .bento-content { padding: 1.75rem; }
.bento-offer .bento-tag { color: var(--navy-dark); opacity: .7; }
.bento-offer h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.bento-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bento-list li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy-dark);
}

/* Stat card */
.bento-stat {
  background: var(--navy);
  justify-content: flex-start;
}
.bento-stat .bento-content { padding: 1.75rem; }
.bento-stat .bento-tag { color: var(--teal); }
.bento-big-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: .5rem;
}
.bento-big-num span { color: var(--teal); }
.bento-stat p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SHOWCASE
═══════════════════════════════════════════ */
.section-showcase {
  background: transparent;
  color: #1A0805;
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}
.section-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}
.section-showcase::after {
  content: '';
  position: absolute;
  width: 50vmax;
  height: 50vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,67,.1) 0%, transparent 70%);
  top: 50%;
  left: -10vmax;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.section-showcase .container { position: relative; z-index: 1; }

/* 1. Feature cards row */
.sc-feature-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sc-feature-card {
  flex: 1;
  background: rgba(26,8,5,.55);
  border: 1px solid rgba(212,160,67,.22);
  border-radius: 16px;
  padding: 1.75rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sc-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,67,.5);
  box-shadow: 0 12px 32px rgba(212,160,67,.15);
}
.sc-feature-card p {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}

/* 2. Coffeespot banner */
.sc-coffeespot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  min-height: 300px;
}
.sc-cs-text {
  background: var(--navy-dark);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.sc-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}
.sc-cs-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1.2;
}
.sc-cs-text p {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}
.sc-cs-video {
  overflow: hidden;
  background: #000;
}
.sc-cs-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Top row */
.showcase-top {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1rem;
  margin-bottom: 1rem;
}

.showcase-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 480px;
  background: var(--navy);
}
.showcase-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-circle {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(232,168,74,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.showcase-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  z-index: 2;
  background: rgba(232,168,74,0.9);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
}

.showcase-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.showcase-card {
  background: var(--navy-light);
  border-radius: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  padding: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.showcase-card:hover {
  background: #5A2820;
  transform: translateX(4px);
}
.showcase-card p {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

/* Bottom row — carousel */
.showcase-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-slides {
  display: contents;
}
.showcase-slide {
  display: none;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}
.showcase-slide.active,
.showcase-slide.active + .showcase-slide {
  display: block;
}
.showcase-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(232,168,74,0.9);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.showcase-arrow:hover { background: var(--teal); transform: translateY(-50%) scale(1.1); }
.arrow-prev { left: -22px; }
.arrow-next { right: -22px; }

/* ── Feature cards ── */
.feature-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.feature-card {
  background: var(--teal);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}


.feature-card p {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.4;
}

/* ── Coffeespot banner ── */
.bento-coffeespot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 4rem;
  background: var(--navy);
  min-height: 320px;
}

.coffeespot-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.coffeespot-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1.15;
}
.coffeespot-text p {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 420px;
}
.btn-coffeespot {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: .5rem;
  background: var(--teal);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}
.btn-coffeespot:hover {
  background: #E8B85A;
  transform: translateY(-2px);
}

.coffeespot-img-wrap {
  position: relative;
  overflow: hidden;
  background: #000;
}
.coffeespot-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coffeespot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: rgba(255,255,255,.3);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: 4px;
  margin: 1rem;
}
.coffeespot-placeholder span { font-size: 4rem; }
.coffeespot-placeholder small { font-size: .8rem; text-align: center; padding: 0 1rem; }

/* ── Social feed row ── */
.bento-social-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bento-social-head p {
  font-size: 1rem;
  color: rgba(26,8,5,.5);
  margin-bottom: .3rem;
}
.bento-handle {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #1A0805;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(212,160,67,.4);
  transition: color var(--transition);
}
.bento-handle:hover { color: var(--teal); }

.bento-feed {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  padding-bottom: 1rem;
}

.feed-item {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,160,67,.12);
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.feed-item:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   SHOWCASE BENTO GRID
═══════════════════════════════════════════ */
.sh-bento {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sh-bento-top {
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  gap: 1rem;
  height: 540px;
}

/* Main panel */
.sh-bento-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
}

.sh-bento-circle {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(212,160,67,.07);
  border: 1px solid rgba(212,160,67,.1);
  top: 50%;
  left: 44%;
  transform: translate(-50%, -54%);
  pointer-events: none;
  z-index: 0;
}

.sh-bento-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .6s ease;
}
.sh-bento-main:hover .sh-bento-video { transform: scale(1.03); }

.sh-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,5,.92) 0%, rgba(26,8,5,.4) 45%, rgba(26,8,5,.15) 100%);
  z-index: 2;
}

.sh-bento-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.sh-bento-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.sh-bento-content p {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 460px;
}

/* 3 Tiles */
.sh-bento-tiles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sh-bento-tile svg {
  background: rgba(212,160,67,.12);
  border-radius: 50%;
  padding: 10px;
  flex-shrink: 0;
}

.sh-bento-tile {
  flex: 1;
  background: #FFFFFF;
  border: 1.5px solid rgba(212,160,67,.35);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,8,5,.08);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sh-bento-tile:hover {
  border-color: rgba(212,160,67,.7);
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(212,160,67,.18);
}

.sh-bento-tile span {
  font-size: .83rem;
  font-weight: 600;
  color: rgba(26,8,5,.8);
  line-height: 1.4;
}

/* Bottom 2 photo cards */
.sh-bento-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sh-bento-card {
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.sh-bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  transition: transform .5s ease;
}
.sh-bento-card:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════
   SECTION GRAIN TEXTURE
═══════════════════════════════════════════ */
.section-navy::before,
.section-teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   SERVICES — bento layout
═══════════════════════════════════════════ */
.sv-bento {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  padding-bottom: 7rem;
}

/* Top row */
.sv-bento-top {
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  gap: 1rem;
  height: 540px;
}

/* Main big card */
.sv-bento-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #1A0805;
  cursor: default;
}

.sv-bento-circle {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(212,160,67,.1);
  border: 1px solid rgba(212,160,67,.12);
  top: 50%;
  left: 44%;
  transform: translate(-50%, -54%);
  pointer-events: none;
  z-index: 0;
}

.sv-bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 1;
  transition: transform .6s ease;
}
.sv-bento-main:hover .sv-bento-img { transform: scale(1.04); }

.sv-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,5,.88) 0%, rgba(26,8,5,.3) 45%, transparent 70%);
  z-index: 2;
}

.sv-bento-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sv-bento-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.sv-bento-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.sv-bento-content p {
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
  max-width: 460px;
}

/* Right tiles */
.sv-bento-tiles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sv-bento-tile {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(26,8,5,.08);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sv-bento-tile:hover {
  background: #FFFFFF;
  border-color: rgba(212,160,67,.5);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(212,160,67,.12);
}

.sv-tile-icon {
  font-size: 2rem;
  line-height: 1;
}

.sv-bento-tile h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--teal);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.sv-bento-tile p { display: none; }

/* Bottom row */
.sv-bento-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sv-bento-card {
  background: #1A0805;
  border: 1px solid rgba(26,8,5,.08);
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.sv-bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,160,67,.35);
  box-shadow: 0 20px 48px rgba(0,0,0,.25);
}

.sv-bento-card-photo {
  position: relative;
  height: 100%;
}

.sv-bento-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform .5s ease;
}
.sv-bento-card:hover .sv-bento-card-photo img { transform: scale(1.06); }

/* Subtle label overlay at bottom */
.sv-bento-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(26,8,5,.75) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: .6rem;
}

.sv-bento-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.15;
}

.sv-bento-card-body p { display: none; }

/* ═══════════════════════════════════════════
   SERVICES (old shared styles)
═══════════════════════════════════════════ */
.section-navy .section-label { color: var(--teal); }

.section-navy h2 { color: #1A0805; }

.section-header { position: relative; z-index: 2; }

.section-navy .section-header { padding-top: 2rem; }

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 7rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,8,5,.08);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.card-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover .card-top-line { transform: scaleX(1); }

.card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.service-card h3 { color: #1A0805; margin-bottom: .75rem; }
.service-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(26,8,5,.6);
}

/* ═══════════════════════════════════════════
   PROCESS / TIMELINE
═══════════════════════════════════════════ */
.section-teal h2 { color: #1A0805; }
.section-teal .section-header { padding-top: 7rem; }

.timeline {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 7rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: rgba(212,160,67,.4);
  transition: height 1s ease;
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}

.step-dot {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--teal);
  box-shadow: 0 0 0 4px rgba(212,160,67,.2);
  justify-self: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  color: #1A0805;
  border: 1px solid rgba(26,8,5,.08);
  position: relative;
}

.step-left .step-content { grid-column: 1; }
.step-left .step-dot     { grid-column: 2; }
.step-left > :nth-child(3) { grid-column: 3; visibility: hidden; pointer-events: none; } /* empty */
.step-left { grid-template-areas: "content dot empty"; }

.step-right .step-dot     { grid-column: 2; }
.step-right .step-content { grid-column: 3; }
.step-right > :first-child { grid-column: 1; visibility: hidden; }
.step-right { grid-template-areas: "empty dot content"; }

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(26,8,5,.06);
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: .5rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.step-content h3 {
  color: var(--teal);
  margin-bottom: .5rem;
}
.step-content p {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(26,8,5,.6);
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.section-cream .section-header { padding-top: 7rem; }
.section-cream h2 { color: #1A0805; }
.section-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .45;
  z-index: 0;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  padding-bottom: 7rem;
}

.gallery-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
}

.gallery-portrait {
  flex: 1;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-portrait:hover img { transform: scale(1.05); }

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,5,.9) 0%, rgba(212,160,67,.35) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay span {
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.kontakt-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 7rem 0;
}

.kontakt-right { padding-top: 2rem; }
.kontakt-left h2 { color: #1A0805; margin-bottom: 1rem; }
.kontakt-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26,8,5,.65);
  margin-bottom: 2.5rem;
}

.contact-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(26,8,5,.08);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,8,5,.08);
}

.contact-avatar {
  font-size: 2.5rem;
  background: rgba(212,160,67,.15);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-person strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #1A0805;
}
.contact-person span {
  font-size: .85rem;
  color: rgba(26,8,5,.5);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: rgba(26,8,5,.75);
  transition: color var(--transition);
}
.contact-item:hover { color: var(--teal); }
.contact-item span { font-size: 1.2rem; }

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(26,8,5,.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF;
  border: 1.5px solid rgba(26,8,5,.15);
  border-radius: 10px;
  padding: .8rem 1rem;
  color: #1A0805;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(26,8,5,.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(212,160,67,.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(26,8,5,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}

.form-group select option { background: #FDF6EE; color: #1A0805; }

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.6);
  cursor: pointer;
}

.btn-submit {
  background: var(--teal);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: .5rem;
}
.btn-submit:hover {
  background: #FFC9BE;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,160,67,.4);
}

.form-success {
  display: none;
  background: rgba(212,160,67,.12);
  border: 1px solid rgba(212,160,67,.35);
  color: var(--teal);
  border-radius: 10px;
  padding: 1rem;
  font-size: .95rem;
  font-weight: 500;
  text-align: center;
}
.form-success.visible { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: #1A0805;
  padding-top: 3rem;
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.footer-logo { height: 162px; object-fit: contain; }
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

.footer-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--teal); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-right: 4rem;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(212,160,67,.08);
}

.footer-bottom { padding: 1.25rem 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { gap: 2.5rem; }
  .onas-inner { gap: 3rem; }
  .kontakt-inner { gap: 3rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,15,38,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .btn-nav { text-align: center; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 0 2rem;
    gap: 3rem;
  }
  .hero-imgs-trio { gap: .4rem; }
  .hero-img-main { height: 240px; }
  .hero-img-side { height: 180px; }
  .hero-text { text-align: center; }
  .hero-btns { justify-content: center; }

  .stats-inner {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .stat-divider { display: none; }
  .stat { flex: 0 0 40%; }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-coffeespot { grid-template-columns: 1fr; }
  .coffeespot-img-wrap { min-height: 260px; }
  .bento-feed { grid-template-columns: repeat(3, 1fr); }
  .bento-feed .feed-item:nth-child(n+4) { display: none; }

  /* Showcase bento */
  .sh-bento-top { grid-template-columns: 1fr; height: auto; }
  .sh-bento-main { height: 420px; }
  .sh-bento-tiles { flex-direction: row; }
  .sh-bento-tile { flex: 1; }
  .sh-bento-bottom { grid-template-columns: 1fr; }
  .sh-bento-card { height: 260px; }

  /* Services bento */
  .sv-bento-top { grid-template-columns: 1fr; height: auto; }
  .sv-bento-main { height: 400px; }
  .sv-bento-tiles { flex-direction: row; flex-wrap: wrap; }
  .sv-bento-tile { flex: 1 1 calc(33% - .5rem); min-width: 140px; }
  .sv-bento-bottom { grid-template-columns: 1fr; }
  .sv-bento-card-photo { height: 180px; }
  .section-navy .section-header { padding-top: 5rem; }

  /* Process */
  .section-teal .section-header { padding-top: 5rem; }
  .timeline-step {
    grid-template-columns: 40px 1fr;
    grid-template-areas: "dot content" !important;
  }
  .step-left .step-content,
  .step-right .step-content { grid-column: 2; grid-area: content; }
  .step-left .step-dot,
  .step-right .step-dot { grid-column: 1; grid-area: dot; }
  .timeline-step > :nth-child(3),
  .step-right > :first-child { display: none; }
  .timeline-line { left: 19px; transform: none; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .section-cream .section-header { padding-top: 5rem; }
  .gallery-overlay { opacity: 1; }

  /* Contact */
  .kontakt-inner {
    grid-template-columns: 1fr;
    padding: 5rem 0;
    gap: 3rem;
  }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: 1; }
  .gallery-item--tall { grid-row: 1; }
}
