/* =========================================
   B&S Barbershop — Main Stylesheet
   ========================================= */

/* ===== Variables ===== */
:root {
  --bg:           #0a0908;
  --surface:      #131110;
  --surface-2:    #1b1916;
  --gold:         #c8a96e;
  --gold-light:   #e3cfa0;
  --gold-dark:    #8a6830;
  --text:         #ede9e0;
  --text-muted:   #a09888;
  --border:       #252220;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Raleway', sans-serif;
  --ease:         0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-fast:    0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { text-decoration: none; color: inherit; transition: color var(--ease-fast); }

/* ===== Base ===== */
body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== Grain Overlay ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
}

/* ===== Grid Background ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 9998;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ===== Buttons ===== */
/*
 * Pseudo-elements use NEGATIVE z-index (-2, -1) so they sit below the
 * element's paint step within the stacking context created by transform.
 * Text (inline content) is naturally above negative z-index children —
 * no <span> wrapper needed on any button.
 */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateY(0); /* creates stacking context */
  transition:
    color 0.45s cubic-bezier(0.77, 0, 0.175, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

/* Layer 1 — diagonal fill, sweeps in from left */
.btn::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -25%; right: -25%;
  background: var(--gold);
  transform: skewX(-14deg) translateX(-115%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -2;
}

/* Layer 2 — shine, sweeps across after the fill */
.btn::after {
  content: '';
  position: absolute;
  top: -10%; left: 0;
  width: 40%; height: 120%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 80%
  );
  transform: skewX(-14deg) translateX(-220%);
  transition: transform 0.7s ease 0.15s;
  z-index: -1;
  pointer-events: none;
}

.btn:hover {
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.2), 0 3px 10px rgba(0, 0, 0, 0.3);
}
.btn:hover::before { transform: skewX(-14deg) translateX(0); }
.btn:hover::after  { transform: skewX(-14deg) translateX(380%); }

.btn:active {
  transform: translateY(-1px);
  transition-duration: 0.1s;
  box-shadow: 0 4px 14px rgba(200, 169, 110, 0.15);
}

/*
 * Primary button — gold background lives in ::before (always at translateX(0))
 * so the negative z-index trick works here too.
 * On hover ::after sweeps in with gold-light over the base gold.
 */
.btn-primary {
  background: transparent; /* gold provided by ::before below */
  color: var(--bg) !important;
  font-weight: 700;
}
.btn-primary::before {
  background: var(--gold);
  transform: skewX(-14deg) translateX(0); /* always fully visible */
  transition: none;
}
.btn-primary::after {
  /* Override shine with a solid gold-light sweep */
  background: var(--gold-light);
  top: 0; left: -25%; right: -25%;
  width: auto; height: 100%;
  transform: skewX(-14deg) translateX(-115%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-primary:hover {
  color: var(--bg);
  box-shadow: 0 10px 36px rgba(200, 169, 110, 0.38), 0 3px 12px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover::before { transform: skewX(-14deg) translateX(0); } /* stays */
.btn-primary:hover::after  { transform: skewX(-14deg) translateX(0); } /* sweeps in */

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding var(--ease), background var(--ease), border-color var(--ease), backdrop-filter var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 9, 8, 0.94);
  border-bottom-color: var(--border);
}
@media (min-width: 801px) {
  .navbar.scrolled {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Brand text in navbar (logo is now in hero section) */
.nav-brand {
  margin-right: auto;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  transition: color var(--ease-fast);
}
.nav-brand .nav-amp {
  color: var(--gold);
  font-style: italic;
}
.nav-brand:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 14px;
  transition: color var(--ease-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }

.nav-links .social-link { padding: 6px 12px; }
.nav-links .social-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Hide mobile-only booking item on desktop */
.nav-mobile-book { display: none; }

.nav-book {
  margin-left: 16px;
  flex-shrink: 0;
  font-size: 0.73rem !important;
  padding: 10px 22px !important;
  letter-spacing: 0.15em !important;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all var(--ease);
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
.hamburger span:nth-child(3) { width: 85%; }

.hamburger.open span:nth-child(1) {
  width: 100%;
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  width: 100%;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== Mobile Nav Overlay ===== */
@media (max-width: 800px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  .nav-book { display: none; }
  .nav-mobile-book { display: block; }

  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li a:not(.btn) {
    font-size: 1rem;
    padding: 14px 32px;
    letter-spacing: 0.2em;
  }
  .nav-links .social-link { padding: 12px; }
  .nav-links .social-link svg { width: 22px; height: 22px; }
  .nav-mobile-book { margin-top: 20px; }
}

/* ===== Logo Circle ===== */
.logo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow:
    0 0 0 4px rgba(200, 169, 110, 0.35),
    0 0 0 8px rgba(200, 169, 110, 0.1),
    0 12px 48px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.logo-circle img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
}

/* Smaller on page hero (inner pages) */
.page-hero .logo-circle {
  width: 200px;
  height: 200px;
  margin-bottom: 32px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 32px 100px;
  background-image: url('https://bsbarbershop.cz/images/kresla600.jpg');
  background-size: cover;
  background-position: center top;
}
@media (min-width: 600px) {
  .hero { background-image: url('https://bsbarbershop.cz/images/kresla1000.jpg'); }
}
@media (min-width: 1000px) {
  .hero { background-image: url('https://bsbarbershop.cz/images/kresla1500.jpg'); }
}
@media (min-width: 1500px) {
  .hero { background-image: url('https://bsbarbershop.cz/images/kresla.jpg'); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200, 169, 110, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.84) 0%, rgba(10, 9, 8, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero-title {
  font-size: clamp(5.5rem, 18vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero-title .amp {
  color: var(--gold);
  font-style: italic;
}
.hero-word {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 2vw, 1.25rem);
  letter-spacing: 0.7em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--text-muted);
  padding-left: 0.7em;
  margin-bottom: 40px;
}

.hero-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
  opacity: 0.5;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hero-address {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 44px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(0.8) translateY(6px); }
}

/* ===== Section Base ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.section-title { margin-bottom: 12px; }
.section-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-footer {
  text-align: center;
  margin-top: 52px;
}

.gold-line {
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin: 20px auto 0;
}

/* ===== Services Preview (Homepage) ===== */
.services-preview {
  background: var(--surface);
  position: relative;
}
.services-preview::before,
.services-preview::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.2;
}
.services-preview::before { top: 0; }
.services-preview::after  { bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 44px 32px;
  position: relative;
  transition: background var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  line-height: 1;
}
.service-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-price {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.3rem, 1.5rem);
  font-weight: 700;
  color: var(--gold);
}

/* ===== CTA Strip ===== */
.cta-strip {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  background-image: url('https://bsbarbershop.cz/images/kresla600.jpg');
  background-size: cover;
  background-position: center 30%;
}
@media (min-width: 600px) {
  .page-hero { background-image: url('https://bsbarbershop.cz/images/kresla1000.jpg'); }
}
@media (min-width: 1000px) {
  .page-hero { background-image: url('https://bsbarbershop.cz/images/kresla1500.jpg'); }
}
@media (min-width: 1500px) {
  .page-hero { background-image: url('https://bsbarbershop.cz/images/kresla.jpg'); }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.93) 100%);
  z-index: 0;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.3;
  z-index: 1;
}
.page-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: 16px;
}
.page-hero p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

/* ===== Services Page Table ===== */
.services-table-section { padding: 80px 0 100px; }

.services-category { margin-bottom: 64px; }
.services-category:last-child { margin-bottom: 0; }

.category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2px;
}
.category-label-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.category-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  position: relative;
}
.category-label-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: padding-left var(--ease);
  cursor: default;
}
.service-row:hover { padding-left: 10px; }

.service-row-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}
.service-row-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.service-row-dots {
  flex: 1;
  min-width: 40px;
  border-bottom: 1px dotted var(--border);
  height: 1px;
  align-self: center;
  margin: 0 8px;
  opacity: 0.5;
}
.service-row-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 5px;
  letter-spacing: 0.01em;
}
.service-row-price {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.35rem, 1.5rem);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== Contact Page ===== */
.contact-section { padding: 80px 0 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.contact-block {
  background: var(--surface);
  padding: 48px 40px;
  transition: background var(--ease);
}
.contact-block:hover { background: var(--surface-2); }

.contact-block-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-block-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.contact-block-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-block p,
.contact-block address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}
.contact-block a { color: var(--text-muted); }
.contact-block a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 8px 0;
  font-size: 16px;
  vertical-align: middle;
}
.hours-day { color: var(--text-muted); padding-right: 16px; }
.hours-time {
  text-align: right;
  font-family: var(--font-serif);
  color: var(--text);
}
.hours-closed {
  text-align: right;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.85rem;
}

/* ===== Contact Social ===== */
.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--ease-fast);
}
.contact-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Footer ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.footer .logo-circle {
  width: 80px;
  height: 80px;
  margin: 0 0 14px;
  box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.25), 0 4px 16px rgba(0,0,0,0.5);
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-addr {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
}
.footer-ornament {
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  font-family: var(--font-serif);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav-links a:hover { color: var(--gold); }
.footer-book-link {
  color: var(--gold) !important;
  opacity: 0.85;
}
.footer-book-link:hover { opacity: 1; }

.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--ease-fast);
}
.footer-social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ===== Floating Book Button ===== */
.float-book {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  box-shadow: 0 4px 28px rgba(200, 169, 110, 0.28), 0 1px 8px rgba(0,0,0,0.4);
  transition: all var(--ease);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.float-book.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-book:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 36px rgba(200, 169, 110, 0.42), 0 2px 12px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.float-book svg { flex-shrink: 0; }

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Responsive — Tablet ===== */
@media (max-width: 1024px) and (min-width: 801px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid .contact-block:last-child {
    grid-column: 1 / -1;
  }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 800px) {
  body { font-size: 16px; }

  .container { padding: 0 20px; }

  .section { padding: 72px 0; }

  .hero { padding: 100px 20px 90px; }

  .logo-circle {
    width: 150px;
    height: 150px;
    margin-bottom: 28px;
  }
  .page-hero .logo-circle {
    width: 150px;
    height: 150px;
  }

  /* Services grid stacks */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card { padding: 36px 24px; }

  /* Contact grid stacks */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-block { padding: 36px 24px; }

  /* Footer */
  .footer { padding-bottom: 88px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-center { display: none; }
  .footer-right { align-items: center; }
  .footer-nav-links { align-items: center; }
  .footer-socials { justify-content: center; }
  .footer .logo-circle { margin: 0 auto 14px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Float button */
  .float-book {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 0.7rem;
  }

  /* Service rows */
  .service-row-dots { display: none; }
  .service-row { flex-wrap: wrap; gap: 4px; }
  .service-row-right { width: 100%; justify-content: flex-start; }

  /* Hero cta stacks */
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; text-align: center; min-width: 160px; }
}
