/* ============================================
   EXPRESS PRINTING — Vintage Letterpress Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Special+Elite&display=swap');

:root {
  --cream: #f4ecd8;
  --paper: #ede0c8;
  --ink: #2b2320;
  --ink-soft: #4a3f38;
  --maroon: #7a2323;
  --maroon-dark: #5c1a1a;
  --gold: #a67c34;
  --gold-light: #c9a24b;
  --forest: #2f4030;
  --line: #b8a888;
}

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

/* ===== RESPONSIVE STUDIO BASE (Tech956 standard) ===== */
/* Fluid root font: one clamp scales the whole page. Change the middle
   term (12px) to make the entire site bigger/smaller. The rem-based sizes
   below (body, nav, hero, headings) all ride this one rule. */
html {
  font-size: clamp(18px, 0.9vw + 10px, 24px);
  scroll-behavior: smooth;
}
@media (max-width: 600px) {
  html { font-size: clamp(16px, 2.4vw + 8px, 19px); }
}
/* Never let anything push a horizontal scrollbar */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, canvas, svg, iframe { max-width: 100%; height: auto; }

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(122,35,35,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(47,64,48,0.03) 0%, transparent 50%);
  color: var(--ink);
  font-family: 'Old Standard TT', Georgia, serif;
  line-height: 1.6;
  font-size: 0.8rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ornamental divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto;
  color: var(--gold);
  max-width: 400px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, var(--line));
}
.divider::before { background: linear-gradient(to left, transparent, var(--line)); }
.divider::after { background: linear-gradient(to right, transparent, var(--line)); }
.divider span { font-size: 0.781rem; }

/* ===== HEADER ===== */
header {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 6px double var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.brand-mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.703rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 0.859rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.brand-text p {
  font-family: 'Special Elite', monospace;
  font-size: 0.43rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Old Standard TT', serif;
  font-size: 0.586rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
nav a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.nav-toggle { display: none; }

/* ===== HERO ===== */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 10vw, 110px) clamp(16px, 6vw, 48px) clamp(56px, 9vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid var(--gold-light);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.hero .eyebrow {
  font-family: 'Special Elite', monospace;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  font-size: 0.508rem;
  margin-bottom: 18px;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.266rem;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h2 em {
  font-style: italic;
  color: var(--maroon);
}
.hero p.lede {
  font-size: 0.742rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 34px;
}
.hero-est {
  font-family: 'Special Elite', monospace;
  font-size: 0.508rem;
  color: var(--forest);
  letter-spacing: 2px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  background: var(--maroon);
  color: var(--cream);
  padding: 14px 34px;
  text-decoration: none;
  font-family: 'Old Standard TT', serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.586rem;
  border: 1px solid var(--maroon);
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--maroon-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTION SHARED ===== */
section { padding: clamp(56px, 9vw, 120px) 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  font-family: 'Special Elite', monospace;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  font-size: 0.508rem;
  margin-bottom: 10px;
  display: block;
}
.section-head h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.562rem;
  color: var(--ink);
}
.section-head p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 14px auto 0;
}

/* ===== REVIEWS ===== */
.stars-badge {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stars {
  color: var(--gold);
  font-size: 0.859rem;
  letter-spacing: 3px;
}
.rating-text {
  font-family: 'Special Elite', monospace;
  font-size: 0.508rem;
  letter-spacing: 1px;
  color: var(--ink-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-light);
  pointer-events: none;
}
.review-card .stars {
  display: block;
  font-size: 0.625rem;
  margin-bottom: 14px;
}
.review-text {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.664rem;
  margin-bottom: 16px;
}
.review-author {
  font-family: 'Special Elite', monospace;
  font-size: 0.508rem;
  letter-spacing: 1px;
  color: var(--maroon);
  text-transform: uppercase;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-light);
  pointer-events: none;
}
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 2px solid var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p { color: var(--ink-soft); font-size: 0.625rem; }

/* ===== ABOUT ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-frame {
  border: 10px solid var(--cream);
  outline: 2px solid var(--gold);
  outline-offset: -6px;
  aspect-ratio: 4/3;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 18px rgba(43,35,32,0.12);
}
.about-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text .eyebrow {
  font-family: 'Special Elite', monospace;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  font-size: 0.508rem;
  margin-bottom: 10px;
  display: block;
}
.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.328rem;
  margin-bottom: 18px;
}
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.about-stats div { text-align: left; }
.about-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.172rem;
  color: var(--maroon);
}
.about-stats span { font-size: 0.508rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); }

/* ===== CONTACT ===== */
.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact .section-head h3 { color: var(--cream); }
.contact .section-head p { color: #d8cdb8; }
.contact-single {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.contact-info {
  border: 1px solid rgba(201,162,75,0.4);
  padding: 36px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ic {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-item .ic svg { width: 18px; height: 18px; }
.contact-item h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a { color: var(--cream); text-decoration: none; font-size: 0.625rem; }
.contact-item a:hover { color: var(--gold-light); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 6px 0; font-size: 0.586rem; border-bottom: 1px dotted rgba(244,236,216,0.15); }
.hours-table td:first-child { white-space: nowrap; width: 1%; }
.hours-table td:last-child { text-align: left; color: var(--gold-light); padding-left: 48px; }

.call-cta {
  display: block;
  text-align: center;
  font-size: 0.781rem;
  padding: 22px 24px;
  letter-spacing: 1.5px;
  background: var(--maroon);
  border-color: var(--gold-light);
}
.call-cta:hover { background: var(--maroon-dark); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,162,75,0.3);
  padding: 28px 0;
  text-align: center;
}
footer p { color: rgba(244,236,216,0.6); font-size: 0.508rem; letter-spacing: 1px; }
footer .fm { color: var(--cream); text-decoration: none; transition: color 0.2s; }
footer .fm:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
/* Mobile nav switches early (1100px): the fluid root font makes the desktop
   links wider, so collapse to a hamburger before they crowd the logo. */
@media (max-width: 1100px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 4px double var(--gold-light);
  }
  nav ul.open { max-height: 320px; }
  nav ul li { width: 100%; text-align: center; }
  nav ul a { display: block; padding: 16px; }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-size: 0.859rem;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }
}
@media (max-width: 860px) {
  .about-wrap { grid-template-columns: 1fr; }
  .hero h2 { font-size: 1.562rem; }
}
