/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --white: #fff;
  --light-gray: #f3f3f3;
  --beige: #e6e6e6;
  --dark: #000000;
  --mid-gray: #5f5f5f;
  --accent: #1f1f1f;
  --border: #d9d9d9;
  --success-bg: #e6f4ea;
  --success-border: #4caf50;
  --error: #c0392b;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 8px;
  --transition: 0.25s ease;
  --header-height: 0px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--mid-gray); }

/* ─── Utilities ──────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--beige); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-secondary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-cta {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }

.header-contact .btn-cta {
  background: linear-gradient(135deg, #2a7fbe 0%, #1e5b9a 100%);
  border-color: #6cc9ff;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(108, 201, 255, 0.18), 0 8px 20px rgba(30, 91, 154, 0.35);
  font-weight: 700;
}

.header-contact .btn-cta:hover {
  background: linear-gradient(135deg, #3290d6 0%, #2670b8 100%);
  border-color: #97dcff;
  box-shadow: 0 0 0 1px rgba(151, 220, 255, 0.35), 0 10px 24px rgba(38, 112, 184, 0.42);
  transform: translateY(-2px);
}

.header-contact .btn-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(151, 220, 255, 0.45), 0 10px 24px rgba(38, 112, 184, 0.42);
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.2rem 2.5rem;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.main-nav a:hover { border-bottom-color: var(--white); color: var(--white); }

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  margin-left: auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #3a3635 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-title-line {
  display: block;
}
.hero-title-line--primary {
  white-space: nowrap;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Minimal Home Intro ─────────────────────────────────────── */
.home-intro {
  min-height: calc(100dvh - var(--header-height, 0px));
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.25rem, 4vh, 4rem) 1.25rem;
}

.home-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}

.home-intro-logo {
  width: min(340px, 78vw);
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.home-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.home-intro-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: #6cc9ff;
  text-shadow: 0 0 10px rgba(88, 180, 255, 0.42), 0 0 22px rgba(49, 132, 255, 0.35);
}

.home-intro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.8rem 1.85rem;
  border-radius: 999px;
  border: 1px solid rgba(108, 201, 255, 0.55);
  background: rgba(108, 201, 255, 0.08);
  color: #9edfff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.home-intro-cta:hover {
  background: rgba(108, 201, 255, 0.16);
  border-color: rgba(151, 220, 255, 0.85);
  color: #d6f2ff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(108, 201, 255, 0.18);
}

.home-intro-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(151, 220, 255, 0.35);
}

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  color: var(--white);
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }

/* ─── About ──────────────────────────────────────────────────── */
.about {
  padding: 6rem 2rem;
  background: var(--white);
  scroll-margin-top: 8.5rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text { }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn-secondary { margin-top: 1rem; }
.about-image { }
.image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2c2c2c, #4a4540);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}

/* ─── Creation Carousel ──────────────────────────────────────── */
.creation-carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: var(--shadow-lg);
}
.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
}
.creation-carousel:hover .carousel-btn {
  opacity: 1;
}
.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}
.carousel-btn--prev { left: 0.75rem; }
.carousel-btn--next { right: 0.75rem; }
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.carousel-dot:hover {
  background: rgba(255,255,255,0.5);
}

/* ─── Features ───────────────────────────────────────────────── */
.features { padding: 6rem 2rem; background: var(--light-gray); }
.features-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.features-inner h2 { margin-bottom: 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-card h3 { margin-bottom: 0.5rem; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
}
.cta-banner-inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Designs Page ───────────────────────────────────────────── */
.designs-section {
  padding: 3rem 2rem 5rem;
  max-width: 1600px;
  margin: 0 auto;
}
.designs-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.designs-category {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.designs-category-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content 1.5rem;
  align-items: center;
  column-gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: var(--light-gray);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.designs-category-title {
  min-width: 0;
  overflow-wrap: anywhere;
}
.designs-category-count {
  min-width: 7.5rem;
  text-align: right;
  justify-self: end;
  font-size: 0.8rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.designs-category-icon {
  width: 1.5rem;
  text-align: center;
  color: var(--mid-gray);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--transition);
}
.designs-category.open .designs-category-icon {
  transform: rotate(45deg);
}
.designs-category-panel {
  display: none;
  padding: 1.25rem;
}
.designs-category.open .designs-category-panel {
  display: block;
}
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.design-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.design-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-image-wrap { position: relative; overflow: hidden; }
.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: default;
  transition: transform 0.4s ease;
}
.lightbox-trigger { cursor: zoom-in; }
.design-card:hover .card-image { transform: scale(1.04); }
.card-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2c2c2c, #4a4540);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.design-card:hover .card-overlay { opacity: 1; }
.btn-card-order {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition);
  pointer-events: auto;
}
.btn-card-order:hover { background: var(--beige); }
.card-body { padding: 1.25rem; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card-body p { font-size: 0.9rem; color: var(--mid-gray); }
.design-dimensions-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}
.design-dimension-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.design-dimension-description {
  font-size: 0.78rem;
  color: var(--mid-gray);
}
.design-dimensions {
  display: inline-block;
  padding: 0.32rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.design-ownership-note {
  padding: 0 2rem 4rem;
}

.design-ownership-note-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}

.design-ownership-note p {
  font-size: 0.92rem;
  color: var(--mid-gray);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(126, 125, 125, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: auto;
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  position: relative;
  text-align: center;
  margin: auto;
  display: inline-block;
  width: min(720px, 92vw);
}
.lightbox-content img {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  object-fit: contain;
  transition: transform 0.2s ease;
  transform-origin: center center;
  cursor: grab;
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 0.9rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 4px;
  z-index: 1001;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-zoom-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 1001;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.lightbox-zoom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.lightbox-zoom-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.lightbox-zoom-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.lightbox-zoom-btn svg { pointer-events: none; }

/* Order Page */
.order-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.order-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.order-section:last-of-type { border-bottom: none; }
.order-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.order-section-header h2 { margin-bottom: 0; }

.order-designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.order-design-card {
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
}
.order-design-card:hover,
.order-design-card:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.order-design-card.selected {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.15);
}
.order-card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.order-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2c2c2c, #4a4540);
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-card-body { padding: 1rem; }
.order-card-body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.order-card-body p { font-size: 0.85rem; color: var(--mid-gray); margin-bottom: 0.75rem; }
.btn-select {
  background: var(--light-gray);
  color: var(--dark);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--border);
}
.btn-select:hover { background: var(--beige); }
.order-design-card.selected .btn-select {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.color-swatches {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.swatch-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 100px;
}
.swatch-label:hover { border-color: var(--accent); }
.swatch-label.checked { border-color: var(--dark); box-shadow: 0 0 0 3px rgba(26,26,26,0.15); }
.swatch-radio { display: none; }
.swatch-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}
.swatch-black_granite { background: radial-gradient(circle at 35% 35%, #555, #111); }
.swatch-gray_granite { background: radial-gradient(circle at 35% 35%, #aaa, #777); }
.swatch-red_granite { background: radial-gradient(circle at 35% 35%, #b06060, #7a3030); }
.swatch-white_marble { background: radial-gradient(circle at 35% 35%, #fefefe, #ddd); }
.swatch-name { font-size: 0.8rem; font-weight: 500; color: var(--dark); text-align: center; }

.size-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.size-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  min-height: 72px;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.size-label:hover { border-color: var(--accent); }
.size-label.checked {
  border-color: var(--dark);
  background: #f7f4ef;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.12);
}
.size-radio { display: none; }
.size-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.size-description {
  font-size: 0.8rem;
  color: var(--mid-gray);
}
.size-empty-note {
  color: var(--mid-gray);
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.required { color: var(--error); }
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44,44,44,0.1);
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: var(--error); }
.form-group textarea { resize: vertical; }
.field-error {
  display: block;
  color: var(--error);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.4rem;
}
.recaptcha-wrap { margin-bottom: 1.5rem; }
.form-submit { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-note { font-size: 0.8rem; color: var(--mid-gray); }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.empty-note { color: var(--mid-gray); font-style: italic; }

.success-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  color: #2e7d32;
}
.success-message strong { display: block; margin-bottom: 0.25rem; }
.success-message p { color: #4caf50; font-size: 0.9rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
}

/* ─── Fade-in animation ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.9rem 1rem;
    gap: 0.55rem;
  }

  .nav-toggle { display: none; }

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    width: 100%;
    order: 1;
    border-top: none;
    padding-top: 0;
    margin-right: 0;
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 0.3rem 0.55rem;
    width: auto;
    border-bottom: none;
    border-left: none;
    font-size: 0.95rem;
  }

  .header-contact {
    display: none;
  }

  .about {
    scroll-margin-top: 6.25rem;
  }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }

  .creation-carousel {
    max-width: 500px;
    margin: 0 auto;
  }
  .carousel-btn {
    opacity: 1;
    width: 36px;
    height: 36px;
  }
  .carousel-btn--prev { left: 0.5rem; }
  .carousel-btn--next { right: 0.5rem; }

  .order-wrapper { padding: 2.5rem 1.25rem 4rem; }
  .order-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .btn-submit { width: 100%; justify-content: center; }
  .lightbox { padding: 1rem; }
  .lightbox-content {
    width: min(640px, 94vw);
  }
  .lightbox-content img {
    height: min(60vh, 420px);
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }
  .lightbox-zoom-controls {
    bottom: 1rem;
    padding: 0.4rem;
  }
  .lightbox-zoom-btn {
    width: 36px;
    height: 36px;
  }
  .lightbox-caption {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
  .design-ownership-note {
    padding: 0 1.25rem 3rem;
  }
  .design-ownership-note-inner {
    padding: 0.9rem 0;
  }

  .order-designs-accordion .designs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .order-designs-accordion .order-design-card .card-body {
    padding: 0.5rem;
  }

  .order-designs-accordion .order-design-card .card-body h3 {
    font-size: 0.72rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
  }

  .order-designs-accordion .order-design-card .card-body p {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content { padding: 1.5rem 1rem; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }

  .main-nav {
    gap: 0.2rem 0.45rem;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 0.26rem 0.45rem;
  }

  .creation-carousel {
    max-width: 100%;
    border-radius: 8px;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
  }
  .carousel-btn--prev { left: 0.35rem; }
  .carousel-btn--next { right: 0.35rem; }
  .carousel-dots {
    bottom: 0.6rem;
    gap: 0.35rem;
  }
  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .order-designs-accordion .designs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .order-designs-accordion .order-design-card .card-body {
    padding: 0.4rem;
  }

  .order-designs-accordion .order-design-card .card-body h3 {
    font-size: 0.68rem;
  }
}

/* ── File input ───────────────────────────────────────────────── */
.file-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-input-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  width: fit-content;
}
.file-input-label:hover {
  background: var(--beige);
  border-color: #c0bbb4;
}

.form-text {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ── File preview ─────────────────────────────────────────────── */
.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.file-preview[hidden] {
  display: none;
}

.file-preview img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.file-preview img:not([src]) {
  display: none;
}

.file-preview-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

#file-preview-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#file-preview-size {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.file-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: transparent;
  border: 1px solid #d9534f;
  border-radius: var(--radius);
  color: #d9534f;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.file-remove-btn:hover {
  background: #d9534f;
  color: #fff;
}
.file-remove-btn svg {
  flex-shrink: 0;
}
