/* ===== Dip N Strip Inc — one-page site ===== */

:root {
  --cream: #faf3e9;
  --cream-2: #f3e8d7;
  --paper: #fffaf2;
  --walnut: #4a2f22;
  --walnut-2: #3a251a;
  --terracotta: #c1652f;
  --terracotta-dark: #a3501f;
  --gold: #c99a4a;
  --ink: #2b1d15;
  --ink-soft: #5e4a3c;
  --line: rgba(74, 47, 34, 0.14);
  --shadow: 0 20px 40px -20px rgba(58, 37, 26, 0.35);
  --radius: 18px;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

img { display: block; }

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 24px;
}

section { position: relative; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 233, 0.88);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--walnut-2);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--terracotta), var(--gold));
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

nav.primary-nav {
  display: flex;
  gap: 28px;
}

nav.primary-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

nav.primary-nav a:hover { color: var(--terracotta-dark); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--walnut);
  color: var(--paper) !important;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.header-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  padding-top: 56px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-block: 44px 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.eyebrow::before { flex-shrink: 0; }

.eyebrow-text { min-width: 0; }

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

h1.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 600;
  color: var(--walnut-2);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: 0 12px 24px -10px rgba(193, 101, 47, 0.55);
}

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

.btn-ghost {
  background: transparent;
  border-color: var(--walnut);
  color: var(--walnut-2);
}

.btn-ghost:hover { background: var(--walnut); color: var(--paper); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.hero-trust svg { flex-shrink: 0; color: var(--terracotta); }

.hero-media {
  position: relative;
}

.hero-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.1;
}

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

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}

.hero-badge .num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ---------- Section shared ---------- */

.section {
  padding-block: 80px;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin: 0 0 10px;
}

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--walnut-2);
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-desc {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0;
}

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(155deg, #f0d8b8, #e6bd85);
  display: grid;
  place-items: center;
  color: var(--walnut-2);
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--walnut-2);
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Process ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;
  padding-top: 8px;
}

.process-step .step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 8px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--walnut-2);
  margin: 0 0 8px;
}

.process-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Gallery / before-after feel ---------- */

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 24px -14px rgba(58, 37, 26, 0.4);
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery figure:hover img { transform: scale(1.06); }

.gallery figure.tall { grid-row: span 2; }

.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(43, 29, 21, 0.75), transparent);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- About / workshop split ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.3;
}

.about-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about-list svg { flex-shrink: 0; margin-top: 3px; color: var(--terracotta); }

/* ---------- Quote / testimonial ---------- */

.quote-band {
  background: var(--walnut-2);
  color: var(--cream);
  padding-block: 60px;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  font-weight: 500;
}

.quote-band cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.contact-row {
  display: flex;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child { border-bottom: none; }

.contact-row .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--terracotta-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-row .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0 0 3px;
}

.contact-row .value {
  font-weight: 600;
  color: var(--walnut-2);
  text-decoration: none;
  font-size: 1rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding-block: 4px;
}

.hours-list li span:last-child { color: var(--walnut-2); font-weight: 600; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--walnut-2);
  color: var(--cream-2);
  padding-block: 40px;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner a { text-decoration: none; color: var(--gold); }

.footer-credit {
  opacity: 0.8;
  font-size: 0.8rem;
}

.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.footer-credit summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 600;
}

.footer-credit .credit-list {
  list-style: none;
  margin: 12px 0 8px;
  padding: 0;
  display: grid;
  gap: 6px;
  opacity: 0.85;
}

.footer-credit p { margin: 6px 0 0; opacity: 0.7; }

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  nav.primary-nav { display: none; }

  .hero-grid { grid-template-columns: 1fr; padding-block: 24px 40px; }
  .hero-media { order: -1; }
  .hero-badge { left: 12px; bottom: -18px; padding: 12px 16px; }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .gallery figure.tall { grid-row: span 1; }

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

@media (max-width: 520px) {
  .wrap { padding-inline: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .header-cta span.long { display: none; }
}
