/*
Theme Name: Couturiers LLC Starter Theme
Theme URI: https://couturiersllc.com/
Author: ChatGPT
Description: Custom starter WordPress theme for Couturiers LLC: deluxe alterations, bridal, drapery, cut-and-sew manufacturing, and ecommerce supplier services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: couturiersllc
*/
:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-2: #f4ece4;
  --ink: #211814;
  --muted: #6f625c;
  --brand: #6f3d2e;
  --brand-dark: #4f2a20;
  --accent: #c9956a;
  --line: #e4d5c7;
  --shadow: 0 18px 50px rgba(55, 34, 23, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 1rem; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.narrow { max-width: 840px; }
.section { padding: 5rem 0; }
.muted { background: var(--surface-2); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(228, 213, 199, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.4rem;
}
.brand-text { font-size: 1.05rem; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-weight: 650;
}
.nav-menu a { text-decoration: none; color: var(--muted); }
.nav-menu a:hover { color: var(--brand); }
.nav-cta {
  padding: .7rem 1rem;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
}
.nav-toggle { display: none; }
.hero {
  padding-top: 6rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(201,149,106,.26), transparent 32%),
    linear-gradient(135deg, #fffaf5 0%, #f6eee8 100%);
}
.hero-grid,
.split,
.contact-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.hero h1,
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  margin: 0;
  color: var(--ink);
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); max-width: 780px; }
.section h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.hero-text { font-size: 1.22rem; max-width: 690px; color: var(--muted); }
.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 .75rem;
}
.hero-actions,
.shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--brand); color: #fff; box-shadow: 0 12px 24px rgba(111,61,46,.22); }
.button.secondary { background: #fff; color: var(--brand-dark); border: 1px solid var(--line); }
.button.light { background: #fff; color: var(--brand-dark); }
.trust-note { color: var(--muted); font-size: .95rem; margin-top: 1.5rem; }
.hero-card,
.process-box,
.shop-panel,
.service-card,
.area-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(111,61,46,.18);
  border-radius: 18px;
  pointer-events: none;
}
.card-topline { font-weight: 900; color: var(--brand); margin-bottom: 1rem; }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .85rem; }
.feature-list li { padding-left: 1.6rem; position: relative; font-weight: 700; }
.feature-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}
.intro p { font-size: 1.08rem; color: var(--muted); }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { padding: 1.5rem; box-shadow: none; }
.service-card h3,
.process-box h3,
.shop-panel h3,
.area-card h3 { margin-top: 0; font-size: 1.35rem; }
.service-card p,
.process-box p,
.shop-panel p,
.area-card p { color: var(--muted); }
.service-card ul { padding-left: 1.25rem; color: var(--muted); }
.process-box,
.shop-panel { padding: 2rem; }
.steps-list { padding-left: 1.25rem; margin-bottom: 0; }
.steps-list li { margin-bottom: .75rem; }
.reverse { grid-template-columns: .9fr 1.1fr; }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 1.6rem; color: var(--muted); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.area-card { padding: 1.35rem; box-shadow: none; }
.area-card.wide { grid-column: 1 / -1; }
.cta-band { background: var(--brand-dark); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: #f4c6a3; }
.cta-grid { grid-template-columns: 1fr auto; }
.contact-grid { align-items: start; }
.contact-info { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.contact-info a { color: var(--brand); font-weight: 750; }
.contact-form { padding: 1.5rem; box-shadow: none; display: grid; gap: .75rem; }
label { font-weight: 800; }
input,
select,
textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }
.site-footer {
  background: #211814;
  color: #f8efe7;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 2rem;
}
.footer-grid h3 { margin-top: 0; }
.footer-grid a { display: block; color: #eadbd0; text-decoration: none; margin-bottom: .5rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand { margin-bottom: 1rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
  padding-top: 1rem;
  color: #d7c7bb;
}
.footer-bottom a { color: #fff; }
.policy-page .section { padding-top: 4rem; }
.policy-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.policy-content h2 { font-family: Georgia, serif; }
.notice {
  background: #fff3d6;
  border: 1px solid #e7c676;
  padding: 1rem;
  border-radius: 16px;
  color: #5e4521;
  font-weight: 700;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: .6rem .9rem;
    font-weight: 800;
  }
  .nav-menu {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .hero-grid,
  .split,
  .reverse,
  .contact-grid,
  .cta-grid { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-grid { gap: 1.2rem; }
}
@media (max-width: 560px) {
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 4rem; }
  .hero-actions,
  .shop-links { flex-direction: column; }
  .button { width: 100%; }
  .area-grid { grid-template-columns: 1fr; }
  .area-card.wide { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
