/**
 * ============================================
 * YUNA HAIR - 1920s-1950s VINTAGE BEAUTY PARLOR
 * Art Deco + Aged Paper + Ornate Decorations
 * 台南韓系燙髮推薦｜Yuna 羊羊・深波紋燙專門
 * ============================================
 */

/* ============================================
   FONTS - Vintage Typography
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Pinyon+Script&family=Noto+Serif+TC:wght@400;500;600;700;900&display=swap');

/* ============================================
   CSS VARIABLES - Authentic Vintage Palette
   ============================================ */
:root {
  /* Aged Paper Tones */
  --aged-paper: #f0e6d3;
  --parchment: #e6d9c3;
  --cream: #faf3e6;
  --antique-white: #f5edd8;
  --old-lace: #ece4d4;

  /* Deep Vintage Browns */
  --espresso: #1e1610;
  --mahogany: #3e2418;
  --walnut: #4a3728;
  --coffee: #5d4632;
  --sepia: #6b4423;
  --chestnut: #7a4a2a;

  /* Vintage Reds & Roses */
  --burgundy: #5c1a1b;
  --wine: #722f37;
  --vintage-rose: #b8908c;
  --dusty-rose: #c9a9a6;
  --old-rose: #9e6b6b;

  /* Gold & Brass Accents */
  --antique-gold: #b8952f;
  --brass: #a68c3c;
  --burnished-gold: #c9a227;
  --old-gold: #cfb53b;
  --dark-gold: #8b7220;

  /* Forest & Olive */
  --forest: #2a3f32;
  --hunter: #355e3b;
  --olive: #6b6b47;
  --sage: #9caf88;

  /* Utility Colors */
  --ink: #12100d;
  --charcoal: #2a2622;
  --warm-gray: #7a7267;
  --taupe: #9b8e82;

  /* Effects */
  --shadow-vintage: rgba(30, 22, 16, 0.25);
  --shadow-deep: rgba(30, 22, 16, 0.4);
  --vignette: rgba(30, 22, 16, 0.6);

  /* Typography */
  --font-display: 'Playfair Display', 'Noto Serif TC', Georgia, serif;
  --font-body: 'Cormorant Garamond', 'Noto Serif TC', Georgia, serif;
  --font-script: 'Pinyon Script', cursive;

  /* Spacing */
  --section-spacing: 120px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--espresso);
  background: var(--aged-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MULTI-LAYER VINTAGE TEXTURE SYSTEM
   ============================================ */

/* Layer 1: Base aged paper color gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(250, 243, 230, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(230, 217, 195, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--aged-paper) 0%, var(--parchment) 100%);
  pointer-events: none;
  z-index: -2;
}

/* Layer 2: Paper fiber texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='5' seed='5'/%3E%3CfeDiffuseLighting in='noise' lighting-color='%23f0e6d3' surfaceScale='2'%3E%3CfeDistantLight azimuth='45' elevation='60'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: multiply;
}

/* Layer 3: Film grain overlay (via separate element) */
.vintage-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  opacity: 0.06;
}

/* Layer 4: Vignette edge darkening */
.vintage-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(30, 22, 16, 0.15) 100%);
}

/* Loading State */
body.is-loading {
  overflow: hidden;
}

body.loaded {
  animation: pageReveal 0.8s ease-out forwards;
}

@keyframes pageReveal {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

/* ============================================
   VINTAGE DECORATIVE ORNAMENTS
   ============================================ */

/* Art Deco Geometric Ornament */
.ornament-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.ornament-deco::before,
.ornament-deco::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.ornament-deco .diamond {
  width: 12px;
  height: 12px;
  background: var(--antique-gold);
  transform: rotate(45deg);
  position: relative;
}

.ornament-deco .diamond::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--aged-paper);
}

/* Flourish Divider */
.flourish-divider {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 40px;
  margin: 30px auto;
  position: relative;
}

.flourish-divider::before {
  content: '❦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--antique-gold);
}

.flourish-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--antique-gold) 20%, transparent 45%, transparent 55%, var(--antique-gold) 80%, transparent 100%);
}

/* Ornate Corner Frame */
.ornate-frame {
  position: relative;
  padding: 50px;
}

.ornate-frame::before,
.ornate-frame::after,
.ornate-frame .corner-tl,
.ornate-frame .corner-tr,
.ornate-frame .corner-bl,
.ornate-frame .corner-br {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--antique-gold);
  border-style: solid;
  border-width: 0;
}

.ornate-frame::before {
  content: '';
  top: 15px;
  left: 15px;
  border-top-width: 3px;
  border-left-width: 3px;
}

.ornate-frame::after {
  content: '';
  top: 15px;
  right: 15px;
  border-top-width: 3px;
  border-right-width: 3px;
}

.ornate-frame .corner-bl {
  bottom: 15px;
  left: 15px;
  border-bottom-width: 3px;
  border-left-width: 3px;
}

.ornate-frame .corner-br {
  bottom: 15px;
  right: 15px;
  border-bottom-width: 3px;
  border-right-width: 3px;
}

/* Vintage Stamp/Seal */
.vintage-seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border: 4px double var(--wine);
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 25px;
  box-shadow:
    inset 0 0 0 6px var(--cream),
    inset 0 0 0 8px var(--wine),
    0 8px 25px var(--shadow-vintage);
  transform: rotate(-8deg);
}

.vintage-seal .seal-year {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 5px 0;
}

/* Art Nouveau Border Pattern */
.art-nouveau-border {
  position: relative;
  border: 2px solid var(--antique-gold);
  padding: 3px;
}

.art-nouveau-border::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--antique-gold);
}

/* ============================================
   TYPOGRAPHY - Vintage Styling
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--espresso);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

p {
  margin-bottom: 1rem;
  color: var(--walnut);
}

a {
  color: var(--wine);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--burgundy);
}

/* Script/Calligraphy Text */
.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--wine);
}

/* Vintage Title with Decorations */
.vintage-title {
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

.vintage-title::before,
.vintage-title::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5em;
  color: var(--antique-gold);
}

.vintage-title::before { left: 0; }
.vintage-title::after { right: 0; }

/* Drop Cap */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.8;
  margin-right: 10px;
  color: var(--wine);
}

/* ============================================
   BUTTONS - Vintage Style
   ============================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 35px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Primary Vintage Button */
.btn-vintage-primary {
  background: var(--espresso);
  color: var(--antique-gold);
  border: 2px solid var(--antique-gold);
  position: relative;
}

.btn-vintage-primary::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--antique-gold);
  opacity: 0.5;
  transition: all 0.3s;
}

.btn-vintage-primary:hover {
  background: var(--mahogany);
  color: var(--burnished-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-vintage);
}

.btn-vintage-primary:hover::before {
  opacity: 1;
  inset: 3px;
}

/* Gold Button */
.btn-vintage-gold {
  background: linear-gradient(135deg, var(--antique-gold) 0%, var(--burnished-gold) 50%, var(--old-gold) 100%);
  color: var(--espresso);
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}

.btn-vintage-gold:hover {
  background: linear-gradient(135deg, var(--burnished-gold) 0%, var(--old-gold) 50%, var(--antique-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(184, 149, 47, 0.4);
  color: var(--espresso);
}

/* Outline Button */
.btn-vintage-outline {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
}

.btn-vintage-outline:hover {
  background: var(--espresso);
  color: var(--cream);
}

/* CTA Icon Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--espresso);
  color: var(--antique-gold);
  border: 2px solid var(--antique-gold);
  font-size: 1.25rem;
}

.btn-cta:hover {
  transform: scale(1.1) rotate(-5deg);
}

.btn-cta-line:hover {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}

.btn-cta-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.btn-cta-phone:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

/* ============================================
   NAVBAR - Elegant Vintage Header
   ============================================ */
.navbar {
  padding: 18px 0;
  background: linear-gradient(180deg, var(--espresso) 0%, var(--mahogany) 100%);
  border-bottom: 4px solid var(--antique-gold);
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Fix navbar container to prevent hamburger wrapping */
.navbar > .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

/* Double line border effect */
.navbar::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: var(--antique-gold);
  opacity: 0.4;
}

.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23b8952f' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  pointer-events: none;
}

.navbar.scrolled {
  padding: 12px 0;
  background: var(--espresso);
  box-shadow: 0 8px 40px var(--shadow-deep);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.navbar-brand .brand-main {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--antique-gold);
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-brand .brand-divider {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--antique-gold), transparent);
}

.navbar-brand .brand-sub {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--vintage-rose);
  letter-spacing: 0.05em;
}

/* Nav Links */
.navbar-nav {
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 22px;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--antique-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--antique-gold);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 60%;
}

/* Navbar CTA Area */
.navbar-cta {
  position: relative;
  z-index: 1;
}

/* Mobile Toggle */
.navbar-toggler {
  border: 2px solid var(--antique-gold);
  padding: 10px 14px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--antique-gold);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION - Vintage Theatre Style
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--espresso);
}

/* Heavy Vignette Effect */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, rgba(30, 22, 16, 0.5) 70%, rgba(30, 22, 16, 0.85) 100%),
    linear-gradient(180deg, rgba(30, 22, 16, 0.6) 0%, transparent 20%, transparent 80%, rgba(30, 22, 16, 0.7) 100%);
}

/* CRT Monitor Effect - Dramatically Different */
.hero-overlay2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.15) 1px,
      transparent 1px,
      transparent 3px
    ),
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 20, 10, 0.1) 60%, rgba(0, 30, 15, 0.6) 100%);
  animation: crtflicker 0.15s infinite;
}

/* CRT Screen Curvature & Glow */
.hero-overlay2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  animation: crtGlow 4s ease-in-out infinite;
}

/* RGB Chromatic Aberration Effect */
.hero-overlay2::after {
  content: '';
  position: absolute;
  inset: -5px;
  background:
    linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, transparent 5%, transparent 95%, rgba(0, 0, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 255, 0, 0.05) 0%, transparent 10%, transparent 90%, rgba(255, 0, 0, 0.05) 100%);
  pointer-events: none;
  animation: rgbShift 2s ease-in-out infinite;
}

/* Film Grain Effect */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.2;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grainShift 0.5s steps(10) infinite;
}

/* CRT Grain Effect for hero-overlay2 */
.hero-overlay2 + .hero-grain {
  opacity: 0.25;
  filter: contrast(1.1) brightness(1.05) saturate(0.9);
  animation: grainShift 0.08s steps(5) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1%, -1%); }
  20% { transform: translate(1%, 1%); }
  30% { transform: translate(-1%, 1%); }
  40% { transform: translate(1%, -1%); }
  50% { transform: translate(-1%, 0); }
  60% { transform: translate(1%, 0); }
  70% { transform: translate(0, 1%); }
  80% { transform: translate(0, -1%); }
  90% { transform: translate(1%, 1%); }
}

@keyframes crtflicker {
  0% { opacity: 1; }
  50% { opacity: 0.97; }
  52% { opacity: 1; }
  54% { opacity: 0.98; }
  100% { opacity: 1; }
}

@keyframes crtGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes rgbShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(1px, 0); }
  50% { transform: translate(0, 1px); }
  75% { transform: translate(-1px, 0); }
}

/* Art Deco Triple Frame Border */
.hero::before {
  content: '';
  position: absolute;
  inset: 25px;
  border: 3px solid var(--antique-gold);
  z-index: 4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 35px;
  border: 1px solid var(--antique-gold);
  z-index: 4;
  pointer-events: none;
  opacity: 0.6;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 50px;
  max-width: 950px;
}

/* Art Deco Badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 35px;
}

.hero-badge span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 45px;
  background: rgba(30, 22, 16, 0.85);
  border: 2px solid var(--antique-gold);
  color: var(--antique-gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  position: relative;
}

.hero-badge span::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--antique-gold);
  opacity: 0.4;
}

.hero-badge span::after {
  content: '◆';
  position: absolute;
  right: 15px;
  font-size: 0.6rem;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 15px;
  text-shadow: 3px 3px 20px rgba(0,0,0,0.6);
  letter-spacing: 0.05em;
}

.hero-title .title-divider {
  color: var(--antique-gold);
  margin: 0 8px;
  opacity: 0.7;
}

.hero-title .title-accent {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--antique-gold);
  margin: 20px 0 25px;
  text-shadow:
    3px 3px 0 var(--espresso),
    4px 4px 20px rgba(184, 149, 47, 0.4);
  letter-spacing: 0.02em;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dusty-rose);
  letter-spacing: 0.2em;
  margin-bottom: 45px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--antique-gold) 0%, var(--burnished-gold) 100%);
  color: var(--espresso);
  border: none;
  padding: 18px 45px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(184, 149, 47, 0.5);
  color: var(--espresso);
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 16px 43px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-hero-outline:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--antique-gold);
}

.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--antique-gold), transparent);
  position: relative;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  right: -3px;
  height: 15px;
  background: var(--antique-gold);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { top: 0; opacity: 1; height: 15px; }
  80% { top: 45px; opacity: 0.3; height: 8px; }
  100% { top: 0; opacity: 1; height: 15px; }
}

/* ============================================
   SECTIONS - Vintage Layout
   ============================================ */
.section-wrap {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}

/* Paper Texture Layer */
.section-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.035' numOctaves='5' result='noise'/%3E%3CfeDiffuseLighting in='noise' lighting-color='%23f0e6d3' surfaceScale='1.5'%3E%3CfeDistantLight azimuth='45' elevation='55'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: multiply;
}

/* Art Deco Pattern Layer */
.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='none' stroke='%23b8952f' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23b8952f' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.08;
}

/* Section Header */
.section-header {
  margin-bottom: 70px;
  position: relative;
}

.section-label {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--antique-gold);
  margin-bottom: 5px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.08em;
}

/* Decorative underline */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background:
    linear-gradient(90deg, transparent, var(--antique-gold) 20%, var(--antique-gold) 80%, transparent);
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--antique-gold);
  opacity: 0.5;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--coffee);
  max-width: 650px;
  margin: 30px auto 0;
  letter-spacing: 0.03em;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--aged-paper) 100%);
}

.about-content {
  padding-right: 50px;
}

/* Vintage Quote Box */
.about-text {
  position: relative;
  padding: 40px 45px;
  background: var(--antique-white);
  border: 3px double var(--parchment);
  margin-bottom: 40px;
  box-shadow:
    8px 8px 0 var(--parchment),
    inset 0 0 30px rgba(184, 149, 47, 0.05);
}

.about-text::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 25px;
  font-family: var(--font-script);
  font-size: 8rem;
  color: var(--antique-gold);
  opacity: 0.25;
  line-height: 1;
}

.about-text::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--antique-gold);
  opacity: 0.2;
  pointer-events: none;
}

.about-highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--wine);
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid var(--parchment);
  position: relative;
}

.about-signature::before {
  content: '— ';
  color: var(--antique-gold);
}

/* Feature Items */
.about-features {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  color: var(--antique-gold);
  font-size: 1.35rem;
  border: 2px solid var(--antique-gold);
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--antique-gold);
  opacity: 0.4;
}

.feature-item span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  letter-spacing: 0.08em;
}

/* Featured Swiper */
.featured-swiper-wrap {
  position: relative;
  padding: 25px;
  background: var(--espresso);
  border: 4px solid var(--antique-gold);
  box-shadow:
    15px 15px 0 var(--mahogany),
    15px 15px 0 1px var(--antique-gold);
}

.featured-swiper-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--antique-gold);
  opacity: 0.35;
  pointer-events: none;
}

.swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(184, 149, 47, 0.3);
}

.swiper-header h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--antique-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
}

.swiper-nav-custom {
  display: flex;
  gap: 12px;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--antique-gold);
  color: var(--antique-gold);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--antique-gold);
  color: var(--espresso);
}

.featured-swiper {
  overflow: hidden;
}

.featured-swiper .swiper-slide {
  overflow: hidden;
}

.featured-swiper .swiper-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: sepia(25%) contrast(1.05) brightness(0.95);
  transition: all 0.5s ease;
}

.featured-swiper .swiper-slide:hover img {
  filter: sepia(5%) contrast(1.1) brightness(1);
  transform: scale(1.03);
}

.swiper-caption {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(30, 22, 16, 0.95), var(--espresso));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-align: center;
  border-top: 1px solid var(--antique-gold);
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--antique-gold);
  opacity: 0.6;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: var(--antique-gold);
  opacity: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-services {
  background: var(--parchment);
  position: relative;
}

.section-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background:
    repeating-linear-gradient(90deg, var(--antique-gold) 0px, var(--antique-gold) 20px, transparent 20px, transparent 40px);
  opacity: 0.3;
}

/* Service Card */
.service-card {
  position: relative;
  height: 100%;
  padding: 45px 35px;
  background: var(--cream);
  border: 3px solid var(--espresso);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Art Deco Top Border */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background:
    linear-gradient(90deg, var(--espresso) 0%, var(--espresso) 30%, var(--antique-gold) 30%, var(--antique-gold) 70%, var(--espresso) 70%, var(--espresso) 100%);
}

/* Inner Frame */
.service-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--parchment);
  pointer-events: none;
  transition: border-color 0.4s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 60px var(--shadow-vintage),
    0 0 0 1px var(--antique-gold);
}

.service-card:hover::after {
  border-color: var(--antique-gold);
}

/* Featured Card */
.service-card-featured {
  background:
    linear-gradient(135deg, var(--espresso) 0%, var(--mahogany) 100%);
  color: var(--cream);
  border-color: var(--antique-gold);
}

.service-card-featured::before {
  background: var(--antique-gold);
}

.service-card-featured::after {
  border-color: rgba(184, 149, 47, 0.3);
}

.service-card-featured:hover::after {
  border-color: var(--antique-gold);
}

/* Badge */
.service-badge {
  position: absolute;
  top: 25px;
  right: -40px;
  padding: 10px 55px;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(92, 26, 27, 0.4);
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.5;
}

.service-card-featured .service-number {
  color: var(--antique-gold);
  opacity: 0.3;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 2.25rem;
  color: var(--wine);
  border: 3px double currentColor;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid currentColor;
  opacity: 0.4;
}

.service-card-featured .service-icon {
  color: var(--antique-gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.service-card-featured .service-title {
  color: var(--antique-gold);
}

.service-desc {
  font-size: 1.05rem;
  color: var(--coffee);
  margin-bottom: 28px;
  line-height: 1.9;
}

.service-card-featured .service-desc {
  color: var(--dusty-rose);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--parchment);
  font-size: 0.95rem;
  color: var(--walnut);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-card-featured .service-features li {
  border-color: rgba(184, 149, 47, 0.2);
  color: var(--vintage-rose);
}

.service-features .feature-icon {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  background: transparent;
  border-width: 1px;
  flex-shrink: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 8px 18px;
  background: var(--antique-white);
  border: 1px solid var(--parchment);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--coffee);
  letter-spacing: 0.08em;
}

.service-card-featured .service-tags span {
  background: rgba(184, 149, 47, 0.12);
  border-color: var(--antique-gold);
  color: var(--antique-gold);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.section-portfolio {
  background: var(--aged-paper);
}

/* Portfolio Filter Controls */
.portfolio-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 50px;
}

.portfolio-controls .btn {
  padding: 14px 32px;
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
  font-size: 0.8rem;
}

.portfolio-controls .btn:hover,
.portfolio-controls .btn.active {
  background: var(--espresso);
  color: var(--antique-gold);
}

/* Portfolio Grid */
.portfolio-grid {
  margin: 0 -10px;
}

.portfolio-sizer,
.portfolio-item {
  padding: 10px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  border: 4px solid var(--espresso);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Vintage Photo Frame Effect */
.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 12px solid transparent;
  border-image: linear-gradient(135deg, rgba(184, 149, 47, 0.4), transparent, rgba(184, 149, 47, 0.2)) 1;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow:
    0 20px 50px var(--shadow-deep),
    0 0 0 2px var(--antique-gold);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: sepia(20%) contrast(1.02) brightness(0.96) saturate(0.9);
  transition: all 0.6s ease;
}

.portfolio-card:hover .portfolio-thumb {
  filter: sepia(5%) contrast(1.08) brightness(1.02) saturate(1);
  transform: scale(1.08);
}

.portfolio-meta {
  padding: 18px;
  background: linear-gradient(180deg, var(--mahogany), var(--espresso));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-align: center;
  border-top: 2px solid var(--antique-gold);
}

.portfolio-meta span {
  color: var(--antique-gold);
  font-weight: 700;
}

/* Loading State */
.portfolio-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  color: var(--coffee);
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--parchment);
  border-top-color: var(--antique-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 25px;
}

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

/* ============================================
   ACTIVITY SECTION
   ============================================ */
.section-activity {
  background:
    linear-gradient(180deg, var(--espresso) 0%, var(--mahogany) 50%, var(--walnut) 100%);
  position: relative;
  overflow: hidden;
}

/* Art Deco Sunburst Pattern */
.section-activity::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b8952f' stroke-width='0.3'%3E%3Ccircle cx='100' cy='100' r='20'/%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Cpath d='M100 0L100 200M0 100L200 100M29 29L171 171M171 29L29 171'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.06;
  pointer-events: none;
}

.section-activity .section-label,
.section-activity .section-title {
  color: var(--antique-gold);
}

.section-activity .section-desc {
  color: var(--dusty-rose);
}

/* Activity Card */
.activity-card {
  background: linear-gradient(145deg, rgba(26, 15, 8, 0.95), rgba(45, 27, 15, 0.9));
  border: 3px solid var(--antique-gold);
  padding: 0;
  position: relative;
  box-shadow:
    15px 15px 0 var(--mahogany),
    15px 15px 0 3px var(--antique-gold),
    0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Inner border decoration */
.activity-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--antique-gold);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Corner decorations */
.activity-card::after {
  content: '◆';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--antique-gold);
  background: var(--espresso);
  padding: 0 15px;
}

/* Activity Badge */
.activity-badge {
  position: absolute;
  top: 25px;
  right: -10px;
  background: linear-gradient(135deg, var(--antique-gold), #d4a84b);
  color: var(--espresso);
  padding: 10px 25px 10px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(184, 149, 47, 0.4);
}

.activity-badge::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  border: 4px solid transparent;
  border-top-color: #8a6b1a;
  border-right-color: #8a6b1a;
}

.activity-badge i {
  font-size: 1rem;
}

/* Activity Image Wrapper */
.activity-image-wrap {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.activity-image-frame {
  position: relative;
  padding: 25px 25px 0;
  overflow: hidden;
}

.activity-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border: 2px solid var(--antique-gold);
}

/* Image Hover Overlay */
.activity-image-overlay {
  position: absolute;
  inset: 25px 25px 0;
  background: linear-gradient(
    180deg,
    rgba(26, 15, 8, 0) 0%,
    rgba(26, 15, 8, 0.3) 50%,
    rgba(26, 15, 8, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  border: 2px solid transparent;
}

.activity-image-wrap:hover .activity-image-overlay {
  opacity: 1;
}

.activity-image-wrap:hover .activity-image {
  transform: scale(1.03);
}

.activity-zoom-icon {
  width: 60px;
  height: 60px;
  background: var(--antique-gold);
  color: var(--espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(184, 149, 47, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.activity-image-wrap:hover .activity-zoom-icon {
  transform: translateY(0);
}

.activity-view-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Activity Footer */
.activity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px 25px;
  border-top: 1px solid rgba(184, 149, 47, 0.3);
  margin-top: 20px;
}

.activity-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dusty-rose);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.activity-date i {
  color: var(--antique-gold);
  font-size: 1rem;
}

.activity-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--antique-gold);
  color: var(--antique-gold);
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.activity-cta:hover {
  background: var(--antique-gold);
  color: var(--espresso);
}

.activity-cta i {
  font-size: 1.1rem;
}

/* ============================================
   QA SECTION
   ============================================ */
.section-qa {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--antique-white) 100%);
}

.qa-category {
  background: var(--aged-paper);
  border: 3px solid var(--parchment);
  padding: 35px;
  position: relative;
}

/* Corner Decorations */
.qa-category::before,
.qa-category::after {
  content: '❖';
  position: absolute;
  font-size: 1rem;
  color: var(--antique-gold);
  opacity: 0.6;
}

.qa-category::before {
  top: 10px;
  left: 15px;
}

.qa-category::after {
  bottom: 10px;
  right: 15px;
}

.qa-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 3px double var(--espresso);
}

.qa-category-header i {
  font-size: 2rem;
  color: var(--wine);
}

.qa-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0;
  letter-spacing: 0.08em;
}

/* Accordion Styling */
.qa-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--parchment);
}

.qa-accordion .accordion-item:last-child {
  border-bottom: none;
}

.qa-accordion .accordion-button {
  background: transparent;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.03em;
  box-shadow: none;
}

.qa-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--wine);
}

.qa-accordion .accordion-button::after {
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23b8952f' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform 0.4s;
}

.qa-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%235c1a1b' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.qa-accordion .accordion-body {
  padding: 0 0 20px;
  font-size: 1.05rem;
  color: var(--walnut);
  line-height: 1.9;
}

/* QA Highlight Box */
.qa-highlight {
  background: var(--espresso);
  padding: 40px;
  border: 3px solid var(--antique-gold);
  position: relative;
  text-align: center;
}

.qa-highlight::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--antique-gold);
  opacity: 0.35;
  pointer-events: none;
}

.qa-highlight-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--antique-gold);
  color: var(--espresso);
  font-size: 1.75rem;
  margin: 0 auto 25px;
}

.qa-highlight h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--antique-gold);
  margin-bottom: 15px;
}

.qa-highlight p {
  color: var(--dusty-rose);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.qa-highlight .btn-cta {
  width: auto;
  height: auto;
  padding: 16px 35px;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.section-booking {
  background:
    linear-gradient(135deg, var(--espresso) 0%, var(--mahogany) 50%, var(--walnut) 100%);
  position: relative;
}

/* Art Deco Pattern Overlay */
.section-booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0L120 60L60 120L0 60z' fill='none' stroke='%23b8952f' stroke-width='0.5'/%3E%3Ccircle cx='60' cy='60' r='15' fill='none' stroke='%23b8952f' stroke-width='0.3'/%3E%3Ccircle cx='60' cy='60' r='25' fill='none' stroke='%23b8952f' stroke-width='0.2'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.08;
  pointer-events: none;
}

.section-booking .section-label,
.section-booking .section-title {
  color: var(--antique-gold);
}

.section-booking .section-title::after,
.section-booking .section-title::before {
  background: linear-gradient(90deg, transparent, var(--burnished-gold), transparent);
}

.booking-card {
  background: var(--cream);
  padding: 70px;
  border: 5px solid var(--antique-gold);
  position: relative;
  box-shadow:
    20px 20px 0 var(--mahogany),
    20px 20px 0 2px var(--antique-gold);
}

.booking-card::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 2px solid var(--antique-gold);
  opacity: 0.35;
  pointer-events: none;
}

.booking-card::after {
  content: '';
  position: absolute;
  inset: 25px;
  border: 1px solid var(--antique-gold);
  opacity: 0.15;
  pointer-events: none;
}

.booking-header {
  margin-bottom: 50px;
}

.booking-intro {
  font-size: 1.15rem;
  color: var(--walnut);
  max-width: 550px;
  margin: 25px auto 0;
  line-height: 1.9;
}

.booking-brand {
  text-align: center;
  padding: 35px;
  margin-bottom: 45px;
  background: var(--antique-white);
  border: 2px solid var(--parchment);
  position: relative;
}

.booking-brand::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--antique-gold);
  opacity: 0.4;
}

.booking-brand .brand-label {
  display: block;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--antique-gold);
  margin-bottom: 12px;
}

.booking-brand h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0;
  letter-spacing: 0.08em;
}

/* Booking Channels */
.booking-channels {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.booking-channel {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 35px;
  background: var(--antique-white);
  border: 2px solid var(--parchment);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.booking-channel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--antique-gold);
  transform: scaleY(0);
  transition: transform 0.4s;
}

.booking-channel:hover {
  border-color: var(--antique-gold);
  transform: translateX(15px);
  box-shadow: -15px 0 40px var(--shadow-vintage);
}

.booking-channel:hover::before {
  transform: scaleY(1);
}

.channel-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  color: var(--antique-gold);
  font-size: 1.75rem;
  border: 2px solid var(--antique-gold);
  flex-shrink: 0;
  transition: all 0.4s;
}

.booking-line:hover .channel-icon {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}

.booking-ig:hover .channel-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.booking-phone:hover .channel-icon {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

.channel-info {
  flex: 1;
}

.channel-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}

.channel-info p {
  font-size: 1rem;
  color: var(--coffee);
  margin: 0;
}

.channel-arrow {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--antique-gold);
  font-size: 1.35rem;
  border: 1px solid var(--antique-gold);
  transition: all 0.4s;
}

.booking-channel:hover .channel-arrow {
  background: var(--antique-gold);
  color: var(--espresso);
  transform: translateX(8px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
}

/* Art Deco Top Border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background:
    linear-gradient(90deg,
      var(--espresso) 0%,
      var(--antique-gold) 20%,
      var(--antique-gold) 25%,
      var(--espresso) 25%,
      var(--espresso) 50%,
      var(--antique-gold) 50%,
      var(--antique-gold) 55%,
      var(--espresso) 55%,
      var(--espresso) 75%,
      var(--antique-gold) 75%,
      var(--antique-gold) 80%,
      var(--espresso) 80%,
      var(--espresso) 100%
    );
}

.footer-main {
  padding: 70px 0;
  border-bottom: 1px solid rgba(184, 149, 47, 0.25);
}

.footer-brand .brand-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--antique-gold);
  display: block;
  letter-spacing: 0.08em;
}

.footer-brand .brand-sub {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--vintage-rose);
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--dusty-rose);
  margin-top: 18px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-link {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--antique-gold);
  color: var(--antique-gold);
  font-size: 1.35rem;
  transition: all 0.4s;
}

.social-link:hover {
  background: var(--antique-gold);
  color: var(--espresso);
  transform: translateY(-5px) rotate(-5deg);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid var(--antique-gold);
  color: var(--antique-gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.4s;
}

.footer-phone:hover {
  background: var(--antique-gold);
  color: var(--espresso);
}

/* Footer Bottom */
.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--taupe);
  margin: 0;
  letter-spacing: 0.08em;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  background: var(--espresso);
  color: var(--antique-gold);
  border: 2px solid var(--antique-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.back-to-top::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--antique-gold);
  opacity: 0.4;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--antique-gold);
  color: var(--espresso);
  transform: translateY(-8px);
}

/* ============================================
   FANCYBOX CUSTOMIZATION
   ============================================ */
.fancybox__container {
  --fancybox-bg: rgba(30, 22, 16, 0.96);
}

.fancybox__toolbar {
  background: var(--espresso);
  border-bottom: 2px solid var(--antique-gold);
}

.fancybox__content {
  border: 5px solid var(--antique-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.fancybox__caption {
  font-family: var(--font-display);
  color: var(--cream);
  background: linear-gradient(180deg, transparent, var(--espresso));
  padding: 20px;
  letter-spacing: 0.08em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991.98px) {
  :root {
    --section-spacing: 90px;
  }

  /* Navbar Mobile Fix - Prevent Hamburger Wrapping */
  .navbar > .container {
    flex-wrap: nowrap;
  }

  .navbar-brand {
    flex-shrink: 1;
    min-width: 0;
  }

  .navbar-brand .brand-main {
    font-size: 1.35rem;
  }

  .navbar-brand .brand-sub {
    font-size: 1rem;
  }

  .navbar-toggler {
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Mobile Navbar Collapse - Full Redesign */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--espresso) 0%, #1a0f08 100%);
    padding: 0;
    margin: 0;
    border: none;
    border-top: 2px solid var(--antique-gold);
    border-bottom: 3px solid var(--antique-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .navbar-collapse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23b8952f' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.08;
    pointer-events: none;
  }

  .navbar-nav {
    padding: 25px 20px 15px;
    text-align: center;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(184, 149, 47, 0.2);
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 18px 15px;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--cream);
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: var(--antique-gold);
    background: rgba(184, 149, 47, 0.08);
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  /* Mobile Social Icons in Navbar */
  .navbar-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 15px;
    border-top: 1px solid rgba(184, 149, 47, 0.25);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
  }

  .navbar-cta .btn-cta {
    width: auto;
    height: auto;
    min-width: 80px;
    padding: 12px 16px;
    border-radius: 0;
    border: 2px solid var(--antique-gold);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--antique-gold);
    transition: all 0.3s ease;
  }

  .navbar-cta .btn-cta:hover {
    background: var(--antique-gold);
    color: var(--espresso);
  }

  .navbar-cta .btn-cta i {
    font-size: 1.1rem;
  }

  .navbar-cta .btn-cta span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  .hero::before,
  .hero::after {
    inset: 15px;
  }

  /* About Section Coordination */
  .about-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .about-text {
    padding: 35px;
  }

  .about-features {
    justify-content: center;
  }

  /* Featured Swiper Coordination */
  .featured-swiper-wrap {
    box-shadow:
      10px 10px 0 var(--mahogany),
      10px 10px 0 1px var(--antique-gold);
  }

  .featured-swiper .swiper-slide img {
    height: 280px;
  }

  /* Service Cards Coordination */
  .service-card {
    margin-bottom: 25px;
  }

  .service-badge {
    right: -35px;
    padding: 8px 45px;
    font-size: 0.6rem;
  }

  /* Portfolio Grid Coordination */
  .portfolio-item {
    padding: 8px;
  }

  .portfolio-meta {
    padding: 15px;
    font-size: 0.8rem;
  }

  /* QA Section Coordination */
  .qa-category {
    margin-bottom: 25px;
  }

  /* Activity Section Coordination */
  .activity-card {
    box-shadow:
      12px 12px 0 var(--mahogany),
      12px 12px 0 3px var(--antique-gold),
      0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .activity-badge {
    font-size: 0.8rem;
    padding: 8px 20px 8px 15px;
  }

  /* Booking Section Coordination */
  .booking-card {
    padding: 50px 35px;
    box-shadow:
      12px 12px 0 var(--mahogany),
      12px 12px 0 2px var(--antique-gold);
  }

  .booking-intro {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-spacing: 70px;
  }

  /* Hero Section */
  .hero-content {
    padding: 25px;
  }

  .hero-title .title-line {
    display: block;
  }

  .hero-title .title-divider {
    display: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Section Headers Coordination */
  .section-header {
    margin-bottom: 50px;
  }

  .section-label {
    font-size: 2rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .section-desc {
    font-size: 1.05rem;
    margin-top: 25px;
  }

  /* About Section */
  .about-text {
    padding: 30px 25px;
  }

  .about-text::before {
    font-size: 5rem;
    top: -20px;
    left: 15px;
  }

  .about-highlight {
    font-size: 1.15rem;
  }

  .about-features {
    gap: 25px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .feature-item span {
    font-size: 0.9rem;
  }

  /* Swiper Coordination */
  .swiper-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .featured-swiper .swiper-slide img {
    height: 260px;
  }

  .swiper-caption {
    padding: 14px 15px;
    font-size: 0.85rem;
  }

  /* Service Cards */
  .service-card {
    padding: 35px 28px;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 1.75rem;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-desc {
    font-size: 1rem;
  }

  .service-tags span {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  /* Portfolio Grid */
  .portfolio-controls {
    gap: 12px;
    margin-bottom: 35px;
  }

  .portfolio-controls .btn {
    padding: 12px 22px;
    font-size: 0.75rem;
  }

  .portfolio-item {
    padding: 6px;
  }

  .portfolio-thumb {
    aspect-ratio: 4/5;
  }

  /* QA Section */
  .qa-category {
    padding: 25px;
  }

  .qa-category-header {
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .qa-category-header h3 {
    font-size: 1.15rem;
  }

  .qa-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .qa-accordion .accordion-body {
    font-size: 0.95rem;
  }

  .qa-highlight {
    padding: 30px 25px;
  }

  .qa-highlight h4 {
    font-size: 1.1rem;
  }

  /* Activity Section */
  .activity-card {
    box-shadow:
      10px 10px 0 var(--mahogany),
      10px 10px 0 2px var(--antique-gold),
      0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .activity-card::before {
    inset: 10px;
  }

  .activity-badge {
    top: 20px;
    right: -8px;
    font-size: 0.75rem;
    padding: 8px 18px 8px 12px;
  }

  .activity-image-frame {
    padding: 20px 20px 0;
  }

  .activity-image-overlay {
    inset: 20px 20px 0;
  }

  .activity-footer {
    flex-direction: column;
    gap: 15px;
    padding: 18px 20px 22px;
    text-align: center;
  }

  .activity-cta {
    width: 100%;
    justify-content: center;
  }

  /* Booking Section */
  .booking-channel {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .booking-channel:hover {
    transform: translateY(-8px);
  }

  .booking-channel::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 5px;
    transform: scaleX(0);
  }

  .booking-channel:hover::before {
    transform: scaleX(1);
  }

  .channel-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .channel-info h4 {
    font-size: 1.1rem;
  }

  .channel-arrow {
    display: none;
  }

  /* Footer */
  .footer-main {
    padding: 50px 0;
  }

  .footer-brand .brand-main {
    font-size: 1.75rem;
  }

  .footer-tagline {
    font-size: 1.25rem;
  }

  .footer-social {
    gap: 18px;
  }

  .social-link {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-spacing: 55px;
  }

  body {
    font-size: 1rem;
  }

  /* Navbar Small Mobile Fix */
  .navbar {
    padding: 12px 0;
  }

  .navbar-brand {
    gap: 8px;
  }

  .navbar-brand .brand-main {
    font-size: 1.1rem;
  }

  .navbar-brand .brand-divider {
    height: 20px;
  }

  .navbar-brand .brand-sub {
    font-size: 0.85rem;
  }

  .navbar-toggler {
    padding: 8px 10px;
  }

  .toggler-bar {
    width: 22px;
    margin: 5px 0;
  }

  /* Hero Section Mobile */
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-badge span {
    padding: 12px 25px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .hero-badge span::after {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-title .title-accent {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
    margin: 15px 0 20px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    margin-bottom: 35px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 16px 30px;
  }

  /* Section Headers Mobile */
  .section-header {
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 1.75rem;
  }

  .section-title::after {
    width: 80px;
    height: 3px;
  }

  /* About Section Mobile */
  .about-text {
    padding: 25px 20px;
    box-shadow: 5px 5px 0 var(--parchment);
  }

  .about-text::before {
    font-size: 4rem;
    top: -15px;
    left: 10px;
  }

  .about-highlight {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .about-signature {
    font-size: 1.5rem;
    margin-top: 20px;
    padding-top: 20px;
  }

  /* About Features - Better Mobile Layout */
  .about-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
  }

  .feature-item {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .feature-item span {
    font-size: 0.85rem;
  }

  /* Swiper Mobile */
  .featured-swiper-wrap {
    padding: 15px;
    box-shadow:
      6px 6px 0 var(--mahogany),
      6px 6px 0 1px var(--antique-gold);
  }

  .swiper-header {
    padding: 12px 15px;
    margin-bottom: 15px;
  }

  .swiper-header h3 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .swiper-btn-prev,
  .swiper-btn-next {
    width: 38px;
    height: 38px;
  }

  .featured-swiper .swiper-slide img {
    height: 240px;
  }

  .swiper-caption {
    padding: 12px;
    font-size: 0.8rem;
  }

  /* Service Cards Mobile */
  .service-card {
    padding: 30px 22px;
  }

  .service-number {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin-bottom: 22px;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .service-desc {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .service-features li {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .service-tags {
    gap: 8px;
  }

  .service-tags span {
    padding: 6px 12px;
    font-size: 0.68rem;
  }

  .service-badge {
    right: -30px;
    padding: 6px 38px;
    font-size: 0.55rem;
  }

  /* Portfolio Grid Mobile */
  .portfolio-controls {
    gap: 10px;
    margin-bottom: 30px;
  }

  .portfolio-controls .btn {
    padding: 10px 18px;
    font-size: 0.7rem;
  }

  .portfolio-item {
    padding: 5px;
  }

  .portfolio-card {
    border-width: 3px;
  }

  .portfolio-meta {
    padding: 12px 10px;
    font-size: 0.75rem;
  }

  /* QA Section Mobile */
  .qa-category {
    padding: 20px 18px;
    margin-bottom: 20px;
  }

  .qa-category::before,
  .qa-category::after {
    font-size: 0.8rem;
  }

  .qa-category-header {
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .qa-category-header i {
    font-size: 1.5rem;
  }

  .qa-category-header h3 {
    font-size: 1.05rem;
  }

  .qa-accordion .accordion-button {
    font-size: 0.9rem;
    padding: 14px 0;
  }

  .qa-accordion .accordion-body {
    font-size: 0.9rem;
    padding-bottom: 14px;
  }

  .qa-highlight {
    padding: 25px 20px;
  }

  .qa-highlight-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .qa-highlight h4 {
    font-size: 1rem;
  }

  .qa-highlight p {
    font-size: 0.95rem;
  }

  .qa-highlight .btn-cta {
    padding: 14px 28px;
    font-size: 0.85rem;
  }

  /* Activity Section Mobile */
  .activity-card {
    border-width: 2px;
    box-shadow:
      8px 8px 0 var(--mahogany),
      8px 8px 0 2px var(--antique-gold),
      0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .activity-card::before {
    inset: 8px;
  }

  .activity-card::after {
    font-size: 1rem;
    top: -10px;
  }

  .activity-badge {
    top: 15px;
    right: -6px;
    font-size: 0.7rem;
    padding: 6px 14px 6px 10px;
    gap: 5px;
  }

  .activity-badge i {
    font-size: 0.85rem;
  }

  .activity-image-frame {
    padding: 15px 15px 0;
  }

  .activity-image-overlay {
    inset: 15px 15px 0;
    padding-bottom: 20px;
  }

  .activity-zoom-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .activity-view-text {
    font-size: 0.75rem;
  }

  .activity-footer {
    padding: 15px 15px 18px;
    margin-top: 15px;
  }

  .activity-date {
    font-size: 0.8rem;
    gap: 8px;
  }

  .activity-cta {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  /* Booking Section Mobile */
  .booking-card {
    padding: 30px 20px;
    border-width: 4px;
    box-shadow:
      8px 8px 0 var(--mahogany),
      8px 8px 0 2px var(--antique-gold);
  }

  .booking-card::before,
  .booking-card::after {
    display: none;
  }

  .booking-header {
    margin-bottom: 35px;
  }

  .booking-intro {
    font-size: 0.95rem;
    margin-top: 18px;
  }

  .booking-brand {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .booking-brand .brand-label {
    font-size: 1.65rem;
    margin-bottom: 10px;
  }

  .booking-brand h3 {
    font-size: 1.1rem;
  }

  .booking-channels {
    gap: 18px;
  }

  .booking-channel {
    padding: 25px 20px;
  }

  .channel-icon {
    width: 55px;
    height: 55px;
    font-size: 1.35rem;
  }

  .channel-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .channel-info p {
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  .footer-main {
    padding: 40px 0;
  }

  .footer-brand .brand-main {
    font-size: 1.5rem;
  }

  .footer-brand .brand-sub {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 1.1rem;
    margin-top: 14px;
  }

  .footer-social {
    gap: 15px;
  }

  .social-link {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .footer-phone {
    padding: 12px 22px;
    font-size: 1rem;
  }

  .footer-bottom {
    padding: 22px 0;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  /* Back to Top Mobile */
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 25px;
    right: 20px;
    font-size: 1.1rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  body::before,
  body::after,
  .vintage-grain,
  .vintage-vignette,
  .hero-grain,
  .hero-overlay,
  .section-texture,
  .section-pattern,
  .back-to-top,
  .navbar {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 50px 0;
    background: #fff !important;
  }

  .section-wrap {
    padding: 40px 0;
  }

  * {
    color: #000 !important;
    background: #fff !important;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-grain {
    animation: none;
  }

  .keywords-track {
    animation: none;
  }
}
