/* ============================================================
   ALESTA SERAMİK — Sanatsal Seramik Atölyesi
   Tasarım Sistemi & Tüm Stiller
   ============================================================ */

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

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* --- Renk Paleti: Toprak Tonları --- */
  --color-terracotta:      #C4613A;
  --color-terracotta-dark:  #9E4A2A;
  --color-terracotta-light: #D98B6A;
  --color-cream:           #F5F0E8;
  --color-cream-dark:      #E8DFD0;
  --color-cream-light:     #FAF8F4;
  --color-brown-dark:      #2C1810;
  --color-brown:           #4A3228;
  --color-brown-medium:    #6B5043;
  --color-olive:           #6B705C;
  --color-olive-light:     #8A9178;
  --color-gold:            #B8860B;
  --color-gold-light:      #D4A843;
  --color-white:           #FFFFFF;
  --color-black:           #1A1210;

  /* --- Fonksiyonel Renkler --- */
  --bg-primary:    var(--color-cream);
  --bg-secondary:  var(--color-cream-light);
  --bg-dark:       var(--color-brown-dark);
  --text-primary:  var(--color-brown-dark);
  --text-secondary: var(--color-brown-medium);
  --text-light:    var(--color-cream);
  --accent:        var(--color-terracotta);
  --accent-hover:  var(--color-terracotta-dark);
  --accent-gold:   var(--color-gold);

  /* --- Tipografi --- */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;

  --fs-hero:    clamp(2.8rem, 6vw, 5.5rem);
  --fs-h1:      clamp(2rem, 4vw, 3.5rem);
  --fs-h2:      clamp(1.6rem, 3vw, 2.5rem);
  --fs-h3:      clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:    clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small:   clamp(0.8rem, 1vw, 0.9rem);
  --fs-nav:     0.9rem;

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

  /* --- Borders & Radius --- */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 50%;

  /* --- Shadows --- */
  --shadow-sm:   0 2px 8px rgba(44, 24, 16, 0.06);
  --shadow-md:   0 4px 20px rgba(44, 24, 16, 0.1);
  --shadow-lg:   0 8px 40px rgba(44, 24, 16, 0.15);
  --shadow-xl:   0 16px 60px rgba(44, 24, 16, 0.2);

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

  /* --- Navbar --- */
  --navbar-height: 80px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--color-terracotta-light);
  color: var(--color-white);
}


/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-alt {
  background-color: var(--color-cream-dark);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section-dark .section-title {
  color: var(--color-cream);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-h3);
  color: var(--text-secondary);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}

.section-dark .section-subtitle {
  color: var(--color-terracotta-light);
}

/* Decorative line under section title */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-dark .section-title::after {
  background: linear-gradient(90deg, var(--color-terracotta-light), var(--color-gold-light));
}

/* Scroll-reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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


/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: background-color var(--transition-medium),
              box-shadow var(--transition-medium),
              backdrop-filter var(--transition-medium);
  display: flex;
  align-items: center;
}

.navbar.transparent {
  background: transparent;
}

.navbar.solid {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.navbar.solid .navbar-logo {
  color: var(--color-brown-dark);
}

.navbar-logo span {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: 0.85em;
  color: var(--color-gold-light);
  margin-left: 0.3em;
}

.navbar.solid .navbar-logo span {
  color: var(--color-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: var(--fs-nav);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.3em 0;
}

.navbar.solid .nav-links a {
  color: var(--text-secondary);
}

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

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

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

.navbar.solid .nav-links a:hover {
  color: var(--color-terracotta);
}

.navbar.solid .nav-links a::after {
  background: var(--color-terracotta);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-cream);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.navbar.solid .hamburger span {
  background: var(--color-brown-dark);
}

.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);
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.75) 0%,
    rgba(44, 24, 16, 0.5) 40%,
    rgba(196, 97, 58, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: var(--space-sm);
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  color: var(--color-cream);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-terracotta-light);
}

.hero-description {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.2s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}

.scroll-indicator span {
  font-size: var(--fs-small);
  color: rgba(245, 240, 232, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(245, 240, 232, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-gold-light);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border: 2px solid var(--color-terracotta);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  border-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 97, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid rgba(245, 240, 232, 0.5);
}

.btn-outline:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-brown-dark);
  border: 2px solid transparent;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}


/* ============================================================
   7. GALLERY / PORTFOLIO
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-cream-light);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.gallery-item-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--color-cream);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.gallery-item-desc {
  font-size: var(--fs-small);
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
}

/* Tall items for masonry-like effect */
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 18, 16, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  text-align: center;
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--color-cream);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-cream);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background: var(--color-terracotta);
  transform: rotate(90deg);
}


/* ============================================================
   8. INSTAGRAM & EXPERIENCE
   ============================================================ */
.section-instagram {
  background: var(--bg-primary);
}

.instagram-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: start;
}

.instagram-embed-grid .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
}

.instagram-embed-grid iframe {
  width: 100% !important;
}

.instagram-follow {
  text-align: center;
  margin-top: var(--space-lg);
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
  gap: var(--space-lg);
  align-items: stretch;
}

.instagram-profile-card {
  display: block;
  color: inherit;
}

.instagram-phone {
  height: 100%;
  min-height: 520px;
  padding: var(--space-sm);
  background: linear-gradient(145deg, var(--color-brown-dark), var(--color-brown));
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.instagram-phone-header,
.instagram-phone-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-cream);
}

.instagram-phone-header {
  gap: 0.8rem;
  justify-content: flex-start;
  padding: 0.35rem 0.2rem;
}

.instagram-phone-header strong {
  display: block;
  font-size: 0.95rem;
}

.instagram-phone-header small {
  display: block;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.65);
}

.profile-dot {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-olive));
  flex-shrink: 0;
}

.instagram-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  flex: 1;
}

.instagram-phone-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.instagram-phone-footer {
  padding: 0.5rem 0.2rem 0.1rem;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.instagram-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.insta-post {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(196, 97, 58, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.insta-post:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 97, 58, 0.35);
  box-shadow: var(--shadow-lg);
}

.insta-post img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.insta-post-body {
  padding: var(--space-sm);
}

.insta-kicker {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.insta-post h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.insta-post p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

.experience-section {
  position: relative;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: var(--space-lg);
  align-items: center;
}

.experience-story {
  display: grid;
  gap: var(--space-sm);
}

.experience-image {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.experience-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.experience-story:hover .experience-image img {
  transform: scale(1.03);
}

.experience-note {
  padding: var(--space-md);
  background: var(--color-brown-dark);
  color: rgba(245, 240, 232, 0.82);
  border-radius: var(--radius-sm);
}

.experience-note span {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--color-gold-light);
}

.experience-note p {
  font-size: var(--fs-small);
  line-height: 1.8;
}

.experience-form-card {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(196, 97, 58, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}


/* ============================================================
   9. ORDER FORM
   ============================================================ */
.order-section {
  position: relative;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(196, 97, 58, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 134, 11, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.order-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: var(--color-terracotta);
  margin-left: 0.2em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  backdrop-filter: blur(5px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 97, 58, 0.1);
  background: var(--color-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 80, 67, 0.4);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5043' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--color-cream-dark);
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.5);
}

.radio-option input[type="radio"]:checked + label {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
}

.radio-option label:hover {
  border-color: var(--color-terracotta-light);
  background: rgba(196, 97, 58, 0.05);
}

/* Bulk order extra fields */
.bulk-fields {
  display: none;
  padding: var(--space-md);
  background: rgba(196, 97, 58, 0.04);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-terracotta-light);
  margin-top: var(--space-sm);
  animation: slideDown 0.3s ease;
}

.bulk-fields.visible {
  display: block;
}

/* Form section divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 var(--space-md);
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cream-dark), transparent);
}

.form-divider span {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* Submit area */
.form-submit {
  text-align: center;
  margin-top: var(--space-lg);
}

.form-submit .btn {
  min-width: 250px;
  padding: 1rem 3rem;
  font-size: 1rem;
}

.form-status {
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(107, 112, 92, 0.1);
  color: var(--color-olive);
  border: 1px solid var(--color-olive-light);
}

.form-status.error {
  display: block;
  background: rgba(196, 97, 58, 0.1);
  color: var(--color-terracotta-dark);
  border: 1px solid var(--color-terracotta-light);
}


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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  pointer-events: none;
}

/* Decorative frame offset */
.about-image-wrapper {
  position: relative;
  display: inline-block;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--color-terracotta-light);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.about-text .accent-text {
  font-family: var(--font-accent);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

/* Stats counter */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-cream-dark);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-top: 0.3rem;
}


/* ============================================================
   11. CONTACT & FOOTER
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 97, 58, 0.1);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  color: var(--color-terracotta);
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--color-terracotta);
}

.contact-form .form-input,
.contact-form .form-textarea {
  background: rgba(255, 255, 255, 0.5);
}

/* Social links */
.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-cream-dark);
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--color-brown-dark);
  padding: var(--space-lg) 0 var(--space-md);
  color: rgba(245, 240, 232, 0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: var(--space-md);
}

.footer-brand .navbar-logo {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.footer-brand p {
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 350px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: var(--fs-small);
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  font-size: var(--fs-small);
}

.footer-bottom a {
  color: var(--color-terracotta-light);
}


/* ============================================================
   12. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Decorative floating pottery wheel icon */
.deco-wheel {
  position: absolute;
  opacity: 0.04;
  font-size: 15rem;
  animation: spinSlow 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}


/* ============================================================
   13. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .instagram-embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-phone {
    min-height: 440px;
  }
  
  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .container {
    padding: 0 1.1rem;
  }

  .hero {
    min-height: 620px;
    height: 100svh;
  }

  .hero-content {
    padding: 0 1.1rem;
  }

  .hero-tagline {
    letter-spacing: 0.16em;
  }

  .btn {
    justify-content: center;
    min-height: 48px;
    text-align: center;
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(44, 24, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition-medium);
    padding: var(--space-lg);
  }

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

  .nav-links a {
    font-size: 1.1rem;
    color: var(--color-cream) !important;
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Grid adjustments */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

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

  .about-image img {
    height: 350px;
  }

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

  .instagram-posts {
    grid-template-columns: 1fr;
  }

  .instagram-embed-grid {
    grid-template-columns: 1fr;
  }

  .experience-image img {
    height: 340px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: min(100%, 320px);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    max-width: 100%;
  }

  .section-subtitle {
    line-height: 1.45;
  }

  .filter-btn,
  .radio-option label {
    width: 100%;
    justify-content: center;
  }

  .gallery-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 1rem;
  }

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

  .instagram-embed-grid iframe,
  .instagram-embed-grid .instagram-media {
    max-width: 100% !important;
  }

  .contact-item {
    gap: 0.75rem;
  }

  .footer-bottom p {
    overflow-wrap: anywhere;
  }

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

  .radio-group {
    flex-direction: column;
  }

  .instagram-phone {
    min-height: 380px;
  }

  .instagram-phone-grid {
    gap: 0.35rem;
  }

  .experience-form-card {
    padding: var(--space-sm);
  }
}
