/* ============================================================
   SWIFTDRAGON ART — CSS DESIGN SYSTEM
   Brand: Deep Plum → Rose Pink gradient · Warm Cream · Heritage Red
   ============================================================ */

/* ── Local Fonts ── */
@font-face {
  font-family: 'Fantaisie Artistique';
  src: url('../fonts/fantaisie-artistique.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colours */
  --clr-plum:        #5B2050;
  --clr-rose:        #C94080;
  --clr-dragon-red:  #C41E2A;
  --clr-cream:       #FAF5F0;
  --clr-body:        #2D2024;
  --clr-accent:      #9B2060;
  --clr-white:       #FFFFFF;
  --clr-plum-light:  #7A3570;
  --clr-rose-light:  #E06098;
  --clr-cream-dark:  #F0E8E0;

  /* Gradients */
  --grad-brand:     linear-gradient(135deg, var(--clr-plum) 0%, var(--clr-rose) 100%);
  --grad-brand-hor: linear-gradient(90deg, var(--clr-plum) 0%, var(--clr-rose) 100%);
  --grad-subtle:    linear-gradient(135deg, rgba(91,32,80,0.06) 0%, rgba(201,64,128,0.06) 100%);

  /* Typography */
  --ff-brand:   'Fantaisie Artistique', cursive;
  --ff-heading: 'Cormorant Garamond', serif;
  --ff-body:    'Lato', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 72px;

  /* Borders & Shadows */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 9999px;
  --shadow-card:  0 4px 24px rgba(91,32,80,0.10);
  --shadow-hover: 0 8px 40px rgba(91,32,80,0.18);
  --shadow-nav:   0 2px 16px rgba(91,32,80,0.12);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    200ms;
  --dur-normal:  350ms;
  --dur-slow:    600ms;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px base */
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-body);
  background: var(--clr-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-smooth);
}

a:hover {
  color: var(--clr-dragon-red);
}

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  color: var(--clr-plum);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.brand-text {
  font-family: var(--ff-brand);
  color: var(--clr-dragon-red);
}

/* ── Utility Classes ── */
.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--grad-brand-hor);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-pill);
}

/* ── Rosette Bullet (the scalloped-circle motif from business cards) ── */
.rosette-list li {
  padding-left: 2em;
  position: relative;
  margin-bottom: var(--space-xs);
}

.rosette-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  background: var(--grad-brand);
  border-radius: 50%;
  /* Scalloped effect via box-shadow petals */
  box-shadow:
    5px 0 0 -2px var(--clr-rose),
    -5px 0 0 -2px var(--clr-rose),
    0 5px 0 -2px var(--clr-rose),
    0 -5px 0 -2px var(--clr-rose),
    3.5px 3.5px 0 -2px var(--clr-plum),
    -3.5px 3.5px 0 -2px var(--clr-plum),
    3.5px -3.5px 0 -2px var(--clr-plum),
    -3.5px -3.5px 0 -2px var(--clr-plum);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.8em 2em;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-smooth);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(201,64,128,0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,64,128,0.40);
  color: var(--clr-white);
}

.btn-outline {
  background: transparent;
  color: var(--clr-plum);
  border: 2px solid var(--clr-rose);
}

.btn-outline:hover {
  background: var(--grad-brand);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--dur-normal) var(--ease-smooth),
              box-shadow var(--dur-normal) var(--ease-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-gradient-border {
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.card-gradient-border::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: var(--grad-brand);
  z-index: -1;
}

/* ════════════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
  transition: background var(--dur-normal) var(--ease-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--ff-brand);
  font-size: 1.4rem;
  color: var(--clr-dragon-red);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-plum);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand-hor);
  transition: width var(--dur-normal) var(--ease-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--clr-rose);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--clr-plum);
  border-radius: var(--radius-pill);
  transition: all var(--dur-normal) var(--ease-smooth);
  transform-origin: center;
}

/* Hamburger animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

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

.hero-logo {
  width: clamp(120px, 25vw, 200px);
  height: auto;
  margin: 0 auto var(--space-md);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.25));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-family: var(--ff-brand);
  color: var(--clr-white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 12px rgba(0,0,0,0.20);
}

.hero-tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255,255,255,0.90);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero .btn-primary {
  background: var(--clr-white);
  color: var(--clr-plum);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero .btn-primary:hover {
  background: var(--clr-cream);
  color: var(--clr-dragon-red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ════════════════════════════════════════════════
   SECTIONS — Common Layout
   ════════════════════════════════════════════════ */
.section {
  padding: var(--space-xl) var(--space-md);
}

.section-alt {
  background: var(--clr-white);
}

.section-gradient {
  background: var(--grad-subtle);
}

/* ════════════════════════════════════════════════
   FEATURED PRODUCTS STRIP
   ════════════════════════════════════════════════ */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.featured-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-sm);
  background: linear-gradient(transparent, rgba(91,32,80,0.85));
  color: var(--clr-white);
}

.featured-card-overlay h3 {
  color: var(--clr-white);
  font-size: 1.1rem;
  margin-bottom: 0.2em;
}

.featured-card-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ════════════════════════════════════════════════
   SERVICES GRID (Home Page)
   ════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.service-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-sm);
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(201,64,128,0.25);
}

.service-card h3 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--clr-body);
  opacity: 0.85;
}

/* ════════════════════════════════════════════════
   UPCOMING MARKETS BANNER
   ════════════════════════════════════════════════ */
.markets-banner {
  background: var(--grad-brand);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.markets-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.markets-banner h2 {
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.market-item {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  font-weight: 300;
}

.market-item strong {
  font-weight: 700;
}

/* ════════════════════════════════════════════════
   GALLERY — Tab Filter + Grid
   ════════════════════════════════════════════════ */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.tab-btn {
  padding: 0.6em 1.4em;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--clr-rose);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--clr-plum);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-smooth);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--grad-brand);
  color: var(--clr-white);
  border-color: var(--clr-plum);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-card {
  cursor: pointer;
  position: relative;
}

.gallery-card.hidden {
  display: none;
}

.gallery-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.04);
}

.gallery-card-body {
  padding: var(--space-sm);
}

.gallery-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.25em;
}

.gallery-card-body p {
  font-size: 0.85rem;
  color: var(--clr-body);
  opacity: 0.75;
}

.gallery-card-category {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-rose);
  font-weight: 700;
  margin-top: var(--space-xs);
}

/* ════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(45,32,36,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-normal) var(--ease-smooth),
              visibility var(--dur-normal) var(--ease-smooth);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 48px rgba(0,0,0,0.40);
}

.lightbox-caption {
  text-align: center;
  color: var(--clr-white);
  padding: var(--space-sm);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 48px;
  height: 48px;
  background: var(--clr-white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--clr-plum);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease-smooth);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--clr-white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-smooth);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.30);
}

.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

/* ════════════════════════════════════════════════
   PRICING CARDS
   ════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  padding: var(--space-lg);
}

.pricing-card h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--clr-cream-dark);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-xs) 0;
  border-bottom: 1px dotted var(--clr-cream-dark);
}

.pricing-item-name {
  font-weight: 400;
  color: var(--clr-body);
}

.pricing-item-price {
  font-weight: 700;
  color: var(--clr-plum);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: var(--space-sm);
}

.pricing-subitem {
  padding-left: 2em;
  font-size: 0.9rem;
  color: var(--clr-body);
  opacity: 0.80;
}

.pricing-note {
  text-align: center;
  font-style: italic;
  color: var(--clr-accent);
  margin-top: var(--space-md);
  font-family: var(--ff-heading);
  font-size: 1rem;
}

.pricing-section-title {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--clr-accent);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--clr-cream-dark);
  font-weight: 600;
}

/* ════════════════════════════════════════════════
   HOW IT WORKS (Custom Orders)
   ════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.step-card {
  padding: var(--space-md);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-brand);
  font-size: 1.8rem;
  color: var(--clr-white);
  margin: 0 auto var(--space-sm);
  box-shadow: 0 4px 16px rgba(201,64,128,0.30);
}

.step-card h3 {
  margin-bottom: var(--space-xs);
}

/* ════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-plum);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8em 1em;
  font-family: var(--ff-body);
  font-size: 1rem;
  border: 2px solid var(--clr-cream-dark);
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  color: var(--clr-body);
  transition: border-color var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-fast) var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-rose);
  box-shadow: 0 0 0 3px rgba(201,64,128,0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--clr-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: var(--space-sm);
}

.about-text p {
  margin-bottom: var(--space-sm);
}

.callout-box {
  background: var(--grad-subtle);
  border-left: 4px solid var(--clr-rose);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-md) 0;
}

.callout-box h3 {
  margin-bottom: var(--space-xs);
  color: var(--clr-accent);
}

/* ════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info-card {
  padding: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-white);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}

.contact-item p,
.contact-item a {
  font-size: 1rem;
}

.response-note {
  background: var(--grad-subtle);
  border-left: 3px solid var(--clr-rose);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-accent);
  margin-top: var(--space-md);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-plum);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto var(--space-lg);
}

.footer-brand .nav-logo-text {
  font-size: 1.6rem;
  margin-bottom: var(--space-xs);
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--clr-rose);
  margin-top: var(--space-xs);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 0.25em 0;
  transition: color var(--dur-fast) var(--ease-smooth),
              padding-left var(--dur-fast) var(--ease-smooth);
}

.footer-col a:hover {
  color: var(--clr-white);
  padding-left: 0.3em;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: all var(--dur-fast) var(--ease-smooth);
  padding: 0;
}

.footer-social a:hover {
  background: var(--clr-rose);
  border-color: var(--clr-rose);
  color: var(--clr-white);
  padding-left: 0;
}

/* ════════════════════════════════════════════════
   PAGE BANNER (inner pages)
   ════════════════════════════════════════════════ */
.page-banner {
  background: var(--grad-brand);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.page-banner h1 {
  color: var(--clr-white);
  position: relative;
  z-index: 1;
  font-family: var(--ff-heading);
}

.page-banner p {
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
  margin-top: var(--space-xs);
}

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--clr-cream);
    flex-direction: column;
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    gap: var(--space-sm);
    box-shadow: -4px 0 24px rgba(91,32,80,0.15);
    transition: right var(--dur-normal) var(--ease-smooth);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--clr-cream-dark);
    width: 100%;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE (480px)
   ════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .featured-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tabs {
    gap: 0.3rem;
  }

  .tab-btn {
    font-size: 0.75rem;
    padding: 0.5em 1em;
  }
}

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-smooth),
              transform var(--dur-slow) var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-normal) var(--ease-smooth),
              transform var(--dur-normal) var(--ease-smooth);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,32,36,0.50);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-normal) var(--ease-smooth),
              visibility var(--dur-normal) var(--ease-smooth);
}

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

/* ── Square Store Link ── */
.store-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  color: var(--clr-accent);
  font-size: 0.95rem;
}

.store-link:hover {
  color: var(--clr-dragon-red);
}

/* ── Print Styles ── */
@media print {
  .site-header, .site-footer, .nav-toggle, .lightbox { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; background: white; color: black; padding: 1rem; }
  .hero h1, .hero-tagline { color: black; text-shadow: none; }
}
