/* ============================================================
   CABB Artistry — Custom Art by Bailey Foreman
   Main Stylesheet
   ============================================================ */

/* ── CSS Custom Properties (Brand Design System) ── */
:root {
  /* Brand Colors */
  --flour:      #F5F0E8;
  --stone:      #A89F91;
  --clay:       #C4956A;
  --tiger-eye:  #B8860B;
  --ink:        #2C2C2C;

  /* Extended Palette */
  --flour-dark:    #E8E1D5;
  --stone-light:   #C4BCB0;
  --stone-dark:    #8A8278;
  --clay-light:    #D4AD86;
  --clay-dark:     #A87B52;
  --ink-light:     #4A4A4A;
  --white:         #FFFFFF;
  --overlay-dark:  rgba(44, 44, 44, 0.55);
  --overlay-light: rgba(245, 240, 232, 0.92);

  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Calibri', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Georgia', serif;

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

  /* Container */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-med:  0.4s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);
  --shadow-xl: 0 16px 60px rgba(44, 44, 44, 0.15);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--flour);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--clay);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--tiger-eye);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}


/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-stone { color: var(--stone); }
.text-clay { color: var(--clay); }
.text-flour { color: var(--flour); }

.subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-light);
}

.section-intro {
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-intro h2 {
  margin-bottom: var(--space-sm);
}


/* ── Layout & Containers ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-2xl) 0;
}

.section--flour { background-color: var(--flour); }
.section--white { background-color: var(--white); }
.section--ink   { background-color: var(--ink); color: var(--flour); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--flour); }
.section--stone-light { background-color: var(--flour-dark); }


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 2em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn--clay {
  background-color: var(--clay);
  color: var(--white);
}
.btn--clay:hover {
  background-color: var(--clay-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--tiger {
  background-color: var(--tiger-eye);
  color: var(--white);
}
.btn--tiger:hover {
  background-color: #9A7209;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clay);
  color: var(--clay);
}
.btn--outline:hover {
  background-color: var(--clay);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  border: 2px solid var(--flour);
  color: var(--flour);
}
.btn--outline-light:hover {
  background-color: var(--flour);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--ink {
  background-color: var(--ink);
  color: var(--flour);
}
.btn--ink:hover {
  background-color: var(--ink-light);
  color: var(--flour);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 0.6em 1.4em;
  font-size: 0.78rem;
}

.btn--large {
  padding: 1.1em 2.8em;
  font-size: 0.9rem;
}


/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-med);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-header:not(.scrolled) .nav-logo-text {
  color: var(--flour);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.3em 0;
}

.site-header:not(.scrolled) .nav-links a:not(.btn) {
  color: var(--flour);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clay);
  transition: width var(--transition-fast);
}

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

.nav-links .btn {
  margin-left: var(--space-xs);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.site-header:not(.scrolled) .hamburger span {
  background-color: var(--flour);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav styles - always dark hamburger when menu open */
.hamburger.active span {
  background-color: var(--ink) !important;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--flour);
  z-index: 999;
  transition: right var(--transition-med);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

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

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--clay);
}

.mobile-nav .btn {
  margin-top: var(--space-sm);
}


/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 44, 44, 0.3) 0%,
    rgba(44, 44, 44, 0.55) 50%,
    rgba(44, 44, 44, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--flour);
  padding: var(--space-lg);
  max-width: 700px;
}

.hero-content h1 {
  color: var(--flour);
  margin-bottom: var(--space-sm);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.hero-content .subtitle {
  color: var(--stone-light);
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.9);
  margin-bottom: var(--space-lg);
}

.hero-content .btn {
  margin: 0 0.5em;
}

/* Page Hero (subpages) */
.page-hero {
  position: relative;
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
  background-color: var(--ink);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
  opacity: 0.9;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--flour);
  margin-bottom: var(--space-xs);
}

.page-hero p {
  color: var(--stone-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .subtitle {
  color: var(--clay);
}


/* ── Gallery / Portfolio Grid ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.6em 1.5em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1.5px solid var(--stone-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--clay);
  border-color: var(--clay);
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background-color: var(--flour-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-med);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  color: var(--flour);
  font-size: 1.1rem;
  margin-bottom: 0.3em;
}

.gallery-item-overlay span {
  color: var(--stone-light);
  font-size: 0.85rem;
}

/* Featured Gallery (Home) */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.featured-grid .gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}


/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--flour);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--flour);
  font-size: 2.5rem;
  background: rgba(245, 240, 232, 0.1);
  border: none;
  cursor: pointer;
  padding: 0.5em;
  border-radius: 50%;
  transition: background var(--transition-fast);
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(245, 240, 232, 0.2);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-caption {
  text-align: center;
  color: var(--stone-light);
  margin-top: var(--space-sm);
  font-size: 0.9rem;
}


/* ── About Section / Teaser ── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-teaser-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-teaser-text p {
  color: var(--ink-light);
  margin-bottom: var(--space-md);
}


/* ── Testimonial Cards ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--clay-light);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--stone);
  font-size: 0.85rem;
}

.testimonial-highlight {
  background-color: var(--white);
  border-left: 4px solid var(--clay);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: var(--container-narrow);
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.testimonial-highlight blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
}


/* ── Services / Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  counter-reset: step;
}

.process-step {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  background-color: var(--clay);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.process-step h4 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  color: var(--ink-light);
  font-size: 0.9rem;
}

/* Services detail layout */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.services-detail.reverse {
  direction: rtl;
}

.services-detail.reverse > * {
  direction: ltr;
}

.services-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.services-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ── Shop Cards ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.shop-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.shop-card:hover .shop-card-img img {
  transform: scale(1.05);
}

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

.shop-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3em;
}

.shop-card-meta {
  color: var(--stone);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.shop-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.shop-card-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.shop-card-actions .btn {
  width: 100%;
  text-align: center;
}


/* ── Contact / Forms ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85em 1em;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--white);
  border: 1.5px solid var(--stone-light);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.15);
  outline: none;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.3em;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  display: none;
}


/* ── Calendly Embed ── */
.calendly-section {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.calendly-inline-widget {
  min-height: 1100px;
  height: 1100px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 768px) {
  .calendly-inline-widget {
    min-height: 1200px;
    height: 1200px;
  }
  .calendly-section {
    padding: var(--space-sm);
  }
}


/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--ink) 0%, #3d3d3d 100%);
  color: var(--flour);
}

.cta-banner h2 {
  color: var(--flour);
  margin-bottom: var(--space-xs);
}

.cta-banner p {
  color: var(--stone-light);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto var(--space-lg);
}


/* ── Footer ── */
.site-footer {
  background-color: var(--ink);
  color: var(--stone-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--flour);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  color: var(--stone);
  font-size: 0.9rem;
  max-width: 350px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flour);
  margin-bottom: var(--space-sm);
}

.footer-links a {
  display: block;
  color: var(--stone);
  font-size: 0.9rem;
  padding: 0.3em 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--clay);
}

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

.footer-social a {
  color: var(--stone);
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--clay);
}

.footer-bottom {
  border-top: 1px solid rgba(168, 159, 145, 0.2);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: var(--stone-dark);
  font-size: 0.8rem;
}


/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }


/* ── Decorative Elements ── */
.divider {
  width: 60px;
  height: 2px;
  background-color: var(--clay);
  margin: var(--space-sm) auto;
}

.divider--left {
  margin-left: 0;
}

.divider--long {
  width: 120px;
}


/* ── Info Cards ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.info-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.info-card h4 {
  margin-bottom: var(--space-xs);
}

.info-card p {
  color: var(--ink-light);
  font-size: 0.9rem;
}


/* ── Shop Banner ── */
.shop-banner {
  background-color: var(--flour-dark);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.shop-banner p {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--ink-light);
  font-size: 1.1rem;
  margin: 0;
}


/* ── About Page Specifics ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-story-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.about-story-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artist-statement {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--clay);
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.artist-statement p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-light);
}


/* ── Contact Page Info ── */
.contact-info-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.contact-info-item .icon {
  font-size: 1.3rem;
  color: var(--clay);
  min-width: 30px;
  text-align: center;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2em;
}

.contact-info-item p {
  color: var(--ink-light);
  font-size: 0.9rem;
}


/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-teaser {
    gap: var(--space-lg);
  }

  .featured-grid {
    gap: var(--space-sm);
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .services-detail {
    gap: var(--space-lg);
  }

  .contact-grid {
    gap: var(--space-lg);
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  section {
    padding: var(--space-xl) 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-teaser-img {
    aspect-ratio: 16 / 10;
  }

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

  .featured-grid .gallery-item:first-child {
    aspect-ratio: 4 / 3;
  }

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

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

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

  .services-detail {
    grid-template-columns: 1fr;
  }

  .services-detail.reverse {
    direction: ltr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-img {
    position: relative;
    top: 0;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content .btn {
    display: inline-flex;
    margin: 0.3em;
  }

  .lightbox-prev { left: 5px; font-size: 1.5rem; width: 40px; height: 40px; }
  .lightbox-next { right: 5px; font-size: 1.5rem; width: 40px; height: 40px; }

  .lightbox-close { top: -40px; font-size: 1.5rem; }

  .page-hero {
    padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

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

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

  .gallery-filters {
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.5em 1em;
    font-size: 0.7rem;
  }
}


/* ── Print Styles ── */
@media print {
  .site-header,
  .hamburger,
  .mobile-nav,
  .site-footer,
  .cta-banner,
  .btn,
  .lightbox {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  section {
    padding: 1rem 0;
  }
}
