/* Synovo — styles.css */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg:         #07070E;
  --surface:    #0D0D18;
  --accent:     #C07A28;
  --accent-lt:  #D89A50;
  --accent-warm:#C2395A;
  --plat:       #A8A0C0;
  --plat-lt:    #C4BCD8;
  --text:       #F0F0F5;
  --text-muted: #9A9AB5;
  --border:     #1A1A2C;

  --max-w: 1200px;
  --section-pad: 6rem 1.5rem;
  --radius: 12px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* ===== FONTS ===== */
/* Bricolage Grotesque — Latin-ext (German: ä ö ü ß) */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/BricolageGrotesque-Latin-Ext.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
/* Bricolage Grotesque — Latin */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/BricolageGrotesque-Latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Cormorant Garamond — Italic 400, Latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-Italic-Latin-Ext.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
/* Cormorant Garamond — Italic 400, Latin */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-Italic-Latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(40px, 6vw, 78px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.08; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.15; }
h3 { font-size: 18px; font-weight: 600; }
p  { font-size: 18px; color: var(--text-muted); }

em.serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}
h1 em.serif { font-size: 1.12em; display: block; color: var(--accent-lt); }
h2 em.serif { font-size: 1.12em; color: var(--accent-lt); }

@media (max-width: 768px) {
  body { font-size: 16px; }
  p    { font-size: 16px; }
  :root { --section-pad: 4rem 1.25rem; }
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
}

section {
  padding: var(--section-pad);
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(192,122,40,0.35);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--plat);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}


/* ===== NAV ===== */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}

#nav.scrolled {
  background: rgba(7, 7, 14, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-lt);
}

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

.nav-links a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 15px;
  padding: 0.6rem 1.25rem;
  box-shadow: 0 2px 12px rgba(192,122,40,0.3);
}
.nav-cta:hover { opacity: 0.88; }

.nav-burger { display: none; color: var(--text-muted); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-overlay.open {
  opacity: 1;
}

.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text);
  padding: 0.5rem;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-overlay-links a {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-overlay { display: flex; pointer-events: none; }
  .nav-overlay.open { pointer-events: all; }
}


/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
}

.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-glow::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 68% 28%, rgba(192,122,40,0.34) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 70%,  rgba(192,122,40,0.14) 0%, transparent 52%),
    radial-gradient(ellipse 35% 30% at 90% 78%,  rgba(168,160,192,0.09) 0%, transparent 48%);
  animation: blob-a 15s ease-in-out infinite alternate;
}
.hero-glow::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 35% at 35% 55%, rgba(192,122,40,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 75% 15%, rgba(192,122,40,0.06) 0%, transparent 50%);
  animation: blob-b 19s ease-in-out infinite alternate-reverse;
}
@keyframes blob-a {
  0%   { transform: scale(1)    translate(0px, 0px);     opacity: 0.85; }
  20%  { transform: scale(1.04) translate(-14px,-18px);  opacity: 1;    }
  50%  { transform: scale(0.96) translate(10px, -8px);   opacity: 0.88; }
  75%  { transform: scale(1.05) translate(-6px,  14px);  opacity: 0.95; }
  100% { transform: scale(1.02) translate(12px,  -5px);  opacity: 0.9;  }
}
@keyframes blob-b {
  0%   { opacity: 0.7; transform: translate(0,0)         scale(1);    }
  50%  { opacity: 1;   transform: translate(-18px, 10px) scale(1.08); }
  100% { opacity: 0.8; transform: translate(8px,  -14px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

#hero h1 {
  margin: 0.5rem 0 1.25rem;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Trust Band */
.trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item i {
  color: var(--accent);
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  #hero { padding-top: 8rem; align-items: flex-start; }
  .hero-sub { font-size: 16px; }
}


/* ===== PROBLEM ===== */
.warm { color: var(--accent-warm); font-weight: 600; }

.problem-hook {
  max-width: 640px;
  margin-bottom: 3rem;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  margin-bottom: 3rem;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problem-icon {
  flex-shrink: 0;
  color: var(--accent-warm);
  margin-top: 3px;
  width: 20px;
  height: 20px;
}

.problem-list p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.5;
}

.problem-transition {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  max-width: 500px;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

/* Problem Visual */
.problem-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.problem-content {
  flex: 1;
}
.problem-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.funnel-container {
  position: relative;
  width: 200px;
  height: 200px;
}
.funnel-graphic svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 28px rgba(192,122,40,0.38));
}
.funnel-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.funnel-drops .drop {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  opacity: 0;
}
.drop-1 { top: 10px; left: 80px; }
.drop-2 { top: 30px; left: 120px; }
.drop-3 { top: 90px; left: 100px; }
.drop-leak {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-warm);
  border-radius: 50%;
  top: 130px;
  left: 60px;
  opacity: 0;
}

@media (max-width: 768px) {
  .problem-transition { font-size: 17px; }
  .problem-container { flex-direction: column; }
  .problem-visual { padding-top: 2rem; }
}


/* ===== HOW IT WORKS ===== */
#how-it-works h2 { margin-bottom: 3rem; }

.steps-list { display: flex; flex-direction: column; max-width: 620px; }

.step-row {
  position: relative;
  padding: 2.25rem 0 2.25rem 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.step-row:last-child { border-bottom: none; }

.ghost-num {
  position: absolute; left: -0.75rem; top: 50%; transform: translateY(-50%);
  font-size: 88px; font-weight: 800; line-height: 1; letter-spacing: -0.05em;
  color: rgba(192,122,40,0.06);
  pointer-events: none; user-select: none;
  transition: color 0.5s ease, text-shadow 0.5s ease;
}
.step-row.active .ghost-num {
  color: rgba(192,122,40,0.24);
  text-shadow: 0 0 48px rgba(192,122,40,0.55);
}

.step-title { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.step-desc  { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.65rem; }

.step-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--accent); background: rgba(192,122,40,0.1);
  border-radius: 4px; padding: 0.2rem 0.55rem;
}

.steps-footer {
  padding-left: 6rem; margin-top: 2.5rem;
  font-size: 17px; font-weight: 600; color: var(--text);
}
.steps-footer em.serif { font-size: 1.12em; color: var(--accent-lt); }

@media (max-width: 768px) {
  .step-row { padding: 2rem 0 2rem 4.5rem; }
  .ghost-num { font-size: 64px; left: -0.5rem; }
  .steps-footer { padding-left: 4.5rem; }
}


/* ===== SERVICES ===== */
#services h2 { margin-bottom: 2.5rem; }

.service-primary {
  position: relative;
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(192,122,40,0.04);
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.service-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(192,122,40,0.08) 0%, transparent 50%);
  border-radius: 0 12px 12px 0; pointer-events: none;
}
.service-primary h3 { font-size: 22px; margin-bottom: 0.4rem; position: relative; }
.service-primary p  { position: relative; margin-bottom: 1.25rem; }

.services-secondary-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  margin-top: 0.25rem;
}
.service-secondary {
  position: relative;
  padding: 1.25rem 2rem 1.25rem 2.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(192,122,40,0.04);
  border-radius: 0 12px 12px 0;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.service-secondary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(192,122,40,0.08) 0%, transparent 50%);
  border-radius: 0 12px 12px 0; pointer-events: none;
}
.service-secondary h3 { font-size: 18px; margin-bottom: 0.25rem; position: relative; }
.service-secondary p  { position: relative; color: var(--text-muted); margin: 0; }

/* Button row inside service-primary (supports two CTAs side by side) */
.service-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Scope grid on seo.html */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.scope-cell {
  background: var(--surface);
  padding: 1.4rem 1.5rem;
}
.scope-cell h3 {
  font-size: 13px;
  margin-bottom: 0.75rem;
}
.scope-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scope-cell ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.scope-cell ul li:last-child { border-bottom: none; }
.scope-cell.included h3 { color: #4ade80; } /* semantic success green — no brand token */
.scope-cell.excluded h3 { color: #f87171; } /* semantic danger red — no brand token */
@media (max-width: 768px) { .scope-grid { grid-template-columns: 1fr; } }

/* ===== WARUM SYNOVO ===== */
#warum-synovo h2 { margin-bottom: 3rem; }

.warum-rows { display: flex; flex-direction: column; }

.warum-row {
  display: flex; align-items: baseline; gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.warum-row:last-child { border-bottom: none; }

/* Fixed-width left column — all right columns align to same x */
.warum-stat {
  flex: 0 0 220px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 42px; letter-spacing: -0.01em; line-height: 1.1;
  color: var(--plat-lt);
}

.warum-detail { flex: 1; min-width: 0; }
.warum-detail strong {
  display: block; font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 0.25rem;
}
.warum-detail p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 768px) {
  .warum-row  { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .warum-stat { flex: none; font-size: 34px; }
}


/* ===== REFERENZEN ===== */
#referenzen .container { max-width: 640px; }

.referenzen-card {
  border-style: dashed;
  text-align: center;
  padding: 3rem 2rem;
}

.referenzen-main {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 0.75rem;
}

.referenzen-sub {
  font-size: 15px;
  color: var(--text-muted);
}


/* ===== FAQ ===== */
.faq-container { max-width: 720px; }
#faq h2 { margin-bottom: 2.5rem; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--plat);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p { font-size: 16px; }


/* ===== BOOKING ===== */
#booking { position: relative; overflow: hidden; }
.booking-container { max-width: 640px; }
#booking h2 { margin-bottom: 0.75rem; }
.booking-sub { margin-bottom: 2.5rem; }

.booking-glow {
  position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 1000px; height: 440px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(192,122,40,0.3) 0%, rgba(168,160,192,0.05) 45%, transparent 65%);
  animation: booking-breathe 9s ease-in-out infinite alternate;
}
@keyframes booking-breathe {
  0%   { opacity: 0.8; transform: translateX(-50%) scale(1);    }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.07); }
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 52px rgba(192,122,40,0.48), 0 8px 24px rgba(0,0,0,0.3);
}

.btn-booking:hover {
  box-shadow: 0 0 72px rgba(192,122,40,0.58), 0 14px 36px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-booking-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn-booking-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.btn-booking-label {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.btn-booking-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.btn-booking-arrow {
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.2s;
}

.btn-booking:hover .btn-booking-arrow {
  transform: translateX(4px);
}


/* ===== FOOTER ===== */
#footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy p {
  font-size: 13px;
  color: var(--text-muted);
}



/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 720px;
  padding: 4rem 1.5rem;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 18px;
  margin: 2rem 0 0.5rem;
}

.legal-page p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}



@media (max-width: 768px) {
  .trust-band { gap: 1.5rem; flex-direction: column; align-items: flex-start; }
}

/* ===== MOBILE FLOATING BOOKING BUTTON ===== */
.fab-booking { display: none; }

@media (max-width: 768px) {
  .fab-booking {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
    background: var(--accent);
    color: #fff;
    border-radius: 28px;
    width: 56px;
    height: 56px;
    padding: 0 0 0 17px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(192,122,40,0.45), 0 2px 8px rgba(0,0,0,0.25);
    text-decoration: none;
    white-space: nowrap;
    transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                padding 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s;
  }

  .fab-booking.fab-open {
    width: 196px;
    padding: 0 20px 0 16px;
    box-shadow: 0 6px 28px rgba(192,122,40,0.55), 0 4px 12px rgba(0,0,0,0.3);
  }

  .fab-booking:active { transform: scale(0.96); opacity: 0.88; }

  .fab-icon { flex-shrink: 0; width: 22px; height: 22px; }

  .fab-label {
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.15s 0.25s;
  }

  .fab-booking.fab-open .fab-label { opacity: 1; }
}
