@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #F2F3F5;
  --warm-tan:  #D8DCE3;
  --clay:      #3B9DD6;
  --clay-dark: #2A7BAE;
  --ink:       #1C2B3A;
  --ink-light: #7B8FA8;
  --white:     #FFFFFF;
  --border:    rgba(28, 43, 58, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-w: 1100px;
  --nav-h: 88px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-logo span { color: var(--clay); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--clay); }

.nav-cta {
  background: var(--clay);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--clay-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

/* ── PAGE WRAPPER ── */
.page { min-height: calc(100vh - var(--nav-h)); }

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.05rem;
  color: var(--ink-light);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.btn-primary {
  display: inline-block;
  background: var(--clay);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  color: var(--clay);
  padding: 0.8rem 1.75rem;
  border: 1.5px solid var(--clay);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 0.75rem;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--clay);
  color: var(--white);
}

.hero-image {
  aspect-ratio: 3/4;
  background: var(--warm-tan);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ink-light);
  font-size: 0.85rem;
}

.hero-image .placeholder-img svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--ink);
  padding: 1.5rem 2rem;
  overflow: hidden;
}

.services-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.services-list li {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-tan);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.services-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION ── */
.section {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--ink-light);
  max-width: 52ch;
}

/* ── ABOUT / SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img {
  aspect-ratio: 1;
  background: var(--warm-tan);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-img .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.85rem;
  gap: 0.75rem;
}

.split-img .placeholder-img svg { width: 48px; height: 48px; opacity: 0.4; }

/* ── FEATURE CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: #D8E8F4;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clay);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

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

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  background: var(--warm-tan);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.8rem;
  gap: 0.5rem;
}

.gallery-item .placeholder-img svg { width: 36px; height: 36px; opacity: 0.35; }

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(46,37,25,0.7), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}

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

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--warm-tan);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

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

/* ── CTA BAND ── */
.cta-band {
  background: var(--clay);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,253,249,0.8);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--clay-dark);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.contact-info p {
  color: var(--ink-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-light);
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--clay);
}

form { display: flex; flex-direction: column; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--clay);
}

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

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.submit-btn {
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.submit-btn:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

/* ── SHOP ── */
.shop-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover { border-color: var(--clay); color: var(--clay); }

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-img {
  aspect-ratio: 1;
  background: #111;
  position: relative;
  overflow: hidden;
}

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

.product-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  display: block;
}

.product-img .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.8rem;
  gap: 0.5rem;
}

.product-img .placeholder-img svg { width: 36px; height: 36px; opacity: 0.35; }

.popular-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--clay);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.4rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.product-body p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.buy-btn {
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.buy-btn:hover { background: var(--clay-dark); transform: translateY(-1px); }

.shop-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-light);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,253,249,0.65);
  font-size: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3rem 2rem 2rem;
  color: var(--warm-tan);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(232,221,208,0.15);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(232,221,208,0.6);
  line-height: 1.65;
  max-width: 30ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(232,221,208,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--warm-tan); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  color: rgba(232,221,208,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .hero-image { order: -1; aspect-ratio: 4/3; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

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

  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 1rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; }

  .nav-links.open { display: flex; }

  .nav-toggle { display: block; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-image {
    aspect-ratio: auto;
    min-height: 320px;
  }
  .hero-image img {
    object-fit: contain;
    object-position: center;
  }
}
