/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --silver: #d0d4d8;
  --silver-light: #f0f2f4;
  --chrome: linear-gradient(
    110deg,
    #080808 0%,
    #1c1c1c 8%,
    #4a4a4a 16%,
    #909090 24%,
    #d0d0d0 30%,
    #f5f5f5 34%,
    #ffffff 37%,
    #ffffff 40%,
    #ececec 43%,
    #c0c0c0 48%,
    #787878 56%,
    #3a3a3a 66%,
    #181818 78%,
    #050505 88%,
    #2a2a2a 94%,
    #505050 100%
  );
  --chrome-hover: linear-gradient(
    110deg,
    #0f0f0f 0%,
    #282828 8%,
    #606060 16%,
    #aaaaaa 24%,
    #e0e0e0 30%,
    #fafafa 34%,
    #ffffff 37%,
    #ffffff 40%,
    #f8f8f8 43%,
    #d8d8d8 48%,
    #989898 56%,
    #505050 66%,
    #242424 78%,
    #0a0a0a 88%,
    #383838 94%,
    #686868 100%
  );
  --white: #ffffff;
  --off-white: rgba(255, 255, 255, 0.85);
  --muted: rgba(255, 255, 255, 0.45);
  --panel: rgba(0, 0, 0, 0.85);
  --panel-border: rgba(255, 255, 255, 0.1);
  --panel-border-hover: rgba(255, 255, 255, 0.7);
  --max-w: 56rem;
  --nav-h: 3.5rem;
  --section-pad: 3rem 1.25rem;
}

/* Chrome sweep animation */
@keyframes chrome-sweep {
  0%        { background-position: 0% center; }
  50%       { background-position: 100% center; }
  100%      { background-position: 0% center; }
}

@keyframes chrome-sweep-fast {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

html {
  scroll-behavior: smooth;
  background: url(background.png) top left repeat;
  background-attachment: fixed;
  color-scheme: dark;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: transparent;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.2rem;
}

/* ============================================================
   NAV — mobile first (hamburger default)
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-brand,
.nav-brand-cont {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
}

/* Desktop CTA — hidden on mobile */
.nav-cta {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0;
  border-top: 1px solid var(--panel-border);
  background: rgba(0, 0, 0, 0.97);
}

.nav-mobile a {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--panel-border);
  display: block;
  transition: color 0.2s;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a:active {
  color: var(--silver);
}

.nav-mobile-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--chrome) !important;
  background-size: 250% auto !important;
  animation: chrome-sweep 2.8s ease-in-out infinite !important;
  color: #000 !important;
  font-weight: 600;
  padding: 0.85rem 1.25rem !important;
  border-radius: 0.25rem;
  margin-top: 0.75rem;
  border-bottom: none !important;
  justify-content: center;
}

.nav-mobile.open {
  display: flex;
}

/* Desktop nav — 640px+ */
@media (min-width: 640px) {
  :root {
    --nav-h: 4rem;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--off-white);
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-links a:hover {
    color: var(--silver);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--chrome);
    background-size: 300% auto;
    animation: chrome-sweep 4s ease-in-out infinite;
    color: #000;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    flex-shrink: 0;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .nav-cta:hover {
    background: var(--chrome-hover);
    background-size: 300% auto;
    animation: chrome-sweep 1.4s ease-in-out infinite;
  }

  .nav-hamburger {
    display: none;
  }
}

/* ============================================================
   FLOATING BOOK NOW — mobile only
   ============================================================ */

.fab-book {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  background: var(--chrome);
  background-size: 300% auto;
  animation: chrome-sweep 4s ease-in-out infinite, fab-pulse 3s infinite;
  color: #000;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  border-radius: 2rem;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  animation: fab-pulse 2.5s infinite;
}

.fab-book:hover,
.fab-book:active {
  background: var(--chrome-hover);
  background-size: 300% auto;
  animation: chrome-sweep-fast 1.8s ease-in-out infinite;
  color: #000;
  transform: scale(1.04);
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 0 rgba(176,184,193,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 8px rgba(176,184,193,0); }
}

@media (min-width: 640px) {
  .fab-book {
    display: none;
  }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

section {
  padding-top: var(--nav-h);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  background: var(--panel);
  border-left: 1px solid var(--panel-border);
  border-right: 1px solid var(--panel-border);
}

@media (min-width: 640px) {
  :root {
    --section-pad: 4.5rem 2rem;
  }
}

@media (min-width: 900px) {
  :root {
    --section-pad: 5.5rem 2.5rem;
  }
}

/* ============================================================
   SECTION DIVIDERS — straight, clean spacing
   ============================================================ */

.section-inner {
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--off-white);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.section-sub a {
  color: var(--silver);
  text-decoration: underline;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}

.btn-primary {
  background: var(--chrome);
  background-size: 300% auto;
  animation: chrome-sweep 4s ease-in-out infinite;
  color: #111;
  text-shadow: none;
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--chrome-hover);
  background-size: 300% auto;
  animation: chrome-sweep-fast 1.8s ease-in-out infinite;
  color: #000;
  box-shadow: 0 0 28px rgba(255,255,255,0.3), 0 0 10px rgba(255,255,255,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   HERO
   ============================================================ */

.section-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  background: var(--panel);
  border-left: 1px solid var(--panel-border);
  border-right: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - var(--nav-h));
  justify-content: center;
  text-align: center;
}

/* Logo with shine */
.logo {
  position: relative;
  width: 11rem;
  height: 11rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

/* Sweep lives on .logo so it covers the border too */
.logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -11.57rem;
  width: 70px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0)   100%
  );
  transform: skewX(-30deg);
  animation-name: logo-shine;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  pointer-events: none;
  z-index: 2;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url(logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #000;
  border: 2px solid #333;
  box-shadow: 0 0 30px rgba(0,0,0,0.8), 0 0 60px rgba(176,184,193,0.1);
  overflow: hidden;
  position: relative;
}

/* Chrome shimmer — shifting silver base layer */
.logo-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    125deg,
    rgba(255,255,255, 0)    0%,
    rgba(210,215,220, 0.25) 20%,
    rgba(255,255,255, 0.45) 50%,
    rgba(190,195,200, 0.25) 80%,
    rgba(255,255,255, 0)    100%
  );
  background-size: 300% 300%;
  animation: holo-bg 1.8s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes holo-bg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}


@keyframes logo-shine {
  0%   { left: -11.57rem; top: 0; }
  100% { left: 23.14rem;  top: 0; }
}

.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 16vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.hero-estd {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--off-white);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.hero-info a {
  color: var(--muted);
  text-decoration: none;
}

.hero-info a:hover {
  color: var(--silver);
}

.hero-info iconify-icon {
  font-size: 0.9rem;
  vertical-align: -0.1em;
  margin-right: 0.2rem;
}

.hero-info-divider {
  color: rgba(255,255,255,0.2);
}

@media (max-width: 400px) {
  .hero-info-divider {
    display: none;
  }
  .hero-info {
    flex-direction: column;
    gap: 0.3rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--silver);
  animation: bounce 2s infinite;
  cursor: pointer;
  padding: 0.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@media (min-width: 640px) {
  .logo {
    width: 14rem;
    height: 14rem;
  }

  .hero-ctas {
    flex-direction: row;
    width: auto;
  }

  .hero-ctas .btn {
    width: auto;
  }
}

@media (min-width: 900px) {
  .logo {
    width: 16rem;
    height: 16rem;
  }
}

/* ============================================================
   VIDEOS
   ============================================================ */

.section-videos .section-inner {
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 22rem;
  margin: 0 auto;
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 0.5rem;
  border: 1px solid var(--panel-border);
  background: #000;
  display: block;
  transition: border-color 0.2s;
}

.video-wrap iframe:hover {
  border-color: var(--panel-border-hover);
}

@media (min-width: 640px) {
  .video-grid {
    max-width: 30rem;
    gap: 1.25rem;
  }
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion {
  width: 100%;
  margin-bottom: 1.5rem;
}

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

.accordion-item:first-child {
  border-top: 1px solid var(--panel-border);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 48px;
}

.accordion-header:hover,
.accordion-header:active {
  color: var(--silver);
}

.accordion-header .accordion-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.3s, color 0.2s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  color: var(--silver);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body p {
  padding-bottom: 1.25rem;
  color: var(--off-white);
  font-size: 0.9rem;
  line-height: 1.7;
}

.accordion-body a {
  color: var(--silver);
  text-decoration: underline;
}

.accordion-item.open .accordion-body {
  max-height: 800px;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-slogan {
  margin-top: 2.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 5vw, 2rem);
  line-height: 1.5;
  color: var(--off-white);
  border-top: 1px solid var(--panel-border);
  padding-top: 2.5rem;
}

.slogan-gold {
  color: var(--silver);
  font-style: italic;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
  border: 1px solid var(--panel-border);
  border-radius: 0.25rem;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}

.tab-btn:hover,
.tab-btn:active {
  color: var(--white);
}

.tab-btn.tab-active {
  background: var(--chrome);
  background-size: 300% auto;
  animation: chrome-sweep 4s ease-in-out infinite;
  color: #000;
  font-weight: 700;
}

.tab-content {
  display: none;
}

.tab-content.tab-visible {
  display: block;
}

.services-location {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Push icon right when no price present */
.accordion-header:not(:has(.service-price)) .accordion-icon {
  margin-left: auto;
}

.service-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
  flex-shrink: 0;
  margin-left: auto;
  white-space: nowrap;
}

.service-price--free {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.services-addon-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin: 2.5rem 0 0.4rem;
}

.services-addon-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.services-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.services-cta .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .services-cta .btn {
    width: auto;
  }
}

/* ============================================================
   PRODUCTS
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--panel-border);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: rgba(255,255,255,0.22);
}

.product-img-wrap {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  aspect-ratio: 1;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-size {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
}

.product-img-placeholder {
  width: 100%;
  height: 8rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0.25rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.product-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--panel-border);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 40px;
}

.product-details-btn iconify-icon {
  transition: transform 0.3s;
}

.product-details-btn:hover,
.product-details-btn:active {
  border-color: var(--panel-border-hover);
  color: var(--white);
}

.product-details-btn.open iconify-icon {
  transform: rotate(180deg);
}

.product-details {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--off-white);
  line-height: 1.6;
}

.product-details.open {
  display: block;
}

.product-details strong {
  display: block;
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.6rem 0 0.25rem;
}

.product-details strong:first-child {
  margin-top: 0;
}

/* ============================================================
   CONNECT
   ============================================================ */

.section-connect .section-inner {
  text-align: center;
}

.map-wrap {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  margin-bottom: 1.75rem;
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
  filter: grayscale(1) invert(1) contrast(1.1) brightness(0.85);
}

@media (min-width: 640px) {
  .map-wrap iframe {
    height: 320px;
  }
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .connect-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 0.25rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 0 6px #000;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 52px;
  text-decoration: none;
  font-family: inherit;
  width: 100%;
}

.connect-btn iconify-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.connect-btn:hover,
.connect-btn:active {
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
  color: var(--white);
}

/* Button-specific hover colours */

/* Book Now — chrome pulse, stands out as primary CTA */
#btn-book {
  background: var(--chrome);
  background-size: 300% auto;
  animation: chrome-sweep 4s ease-in-out infinite;
  color: #000;
  font-weight: 700;
  border-color: rgba(255,255,255,0.5);
}
#btn-book:hover, #btn-book:active {
  animation: chrome-sweep 1.8s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
}

/* Call — green (universal phone colour, kept muted) */
#btn-call:hover, #btn-call:active {
  background: linear-gradient(45deg, #1a7a3f, #0d5c2e);
  border-color: rgba(255,255,255,0.6);
}

/* WhatsApp — brand green */
#btn-whatsapp:hover, #btn-whatsapp:active {
  background: linear-gradient(45deg, #1da851, #128c3e);
  border-color: rgba(255,255,255,0.6);
}

/* Leave a Review — silver, matches theme */
#btn-review:hover, #btn-review:active {
  background: linear-gradient(45deg, #3a3a3a, #222);
  border-color: var(--silver);
  box-shadow: 0 0 12px rgba(208,212,216,0.2);
}

/* Directions — neutral dark */
#btn-directions:hover, #btn-directions:active {
  background: linear-gradient(45deg, #2a2a2a, #181818);
  border-color: rgba(255,255,255,0.6);
}

/* Instagram — brand gradient */
#btn-instagram:hover, #btn-instagram:active {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: rgba(255,255,255,0.6);
}

/* Facebook — brand blue */
#btn-facebook:hover, #btn-facebook:active {
  background: linear-gradient(45deg, #3b5998, #1e2d4c);
  border-color: rgba(255,255,255,0.4);
}

/* TikTok — dark with subtle cyan accent */
#btn-tiktok:hover, #btn-tiktok:active {
  background: linear-gradient(45deg, #1a1a1a, #000);
  border-color: #69c9d0;
}

/* Google — white/light (Google brand) */
#btn-google:hover, #btn-google:active {
  background: linear-gradient(45deg, #e8e8e8, #d0d0d0);
  color: #111;
  border-color: rgba(255,255,255,0.5);
}

/* LinkedIn — brand blue */
#btn-linkedin:hover, #btn-linkedin:active {
  background: linear-gradient(45deg, #0077b5, #004471);
  border-color: rgba(255,255,255,0.4);
}

/* Apple Wallet — Apple silver */
#btn-apple-wallet:hover, #btn-apple-wallet:active {
  background: linear-gradient(45deg, #5a5a5a, #3a3a3a);
  border-color: rgba(255,255,255,0.6);
}

/* PayPal — brand blue */
#btn-paypal:hover, #btn-paypal:active {
  background: linear-gradient(45deg, #009cde, #003087);
  border-color: rgba(255,255,255,0.4);
}

/* Crypto — Bitcoin orange */
#btn-crypto:hover, #btn-crypto:active {
  background: linear-gradient(45deg, #c47a1e, #7a4a0e);
  border-color: rgba(255,255,255,0.4);
}

.tip-section {
  border-top: 1px solid var(--panel-border);
  padding-top: 1.75rem;
  margin-top: 0.5rem;
}

.tip-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

/* Crypto panel */
.crypto-panel {
  display: none;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--panel-border);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.02);
  text-align: left;
}

.crypto-panel.open {
  display: block;
}

.crypto-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.crypto-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.crypto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .crypto-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.crypto-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--panel-border);
  border-radius: 0.4rem;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.crypto-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.crypto-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.crypto-address {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--off-white);
  word-break: break-all;
  background: rgba(0,0,0,0.3);
  padding: 0.35rem 0.6rem;
  border-radius: 0.2rem;
  cursor: pointer;
  user-select: all;
  transition: background 0.2s;
}

.crypto-address:hover {
  background: rgba(176,184,193,0.1);
}

/* ============================================================
   BOOK
   ============================================================ */

.section-book .section-inner {
  text-align: center;
}

.booking-wrap {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: #fff;
}

#booking-iframe {
  width: 100%;
  height: 600px;
  display: block;
  border: none;
}

@media (min-width: 640px) {
  #booking-iframe {
    height: 720px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--panel-border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    padding-bottom: 2rem;
  }
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  display: flex;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}
