@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --charcoal: #2a2826;
  --charcoal-deep: #1c1b19;
  --charcoal-soft: #3d3a36;
  --linen: #ebe6dc;
  --linen-light: #f5f1e9;
  --linen-warm: #d9d2c4;
  --needle: #9a7354;
  --needle-deep: #7a5a40;
  --ink: #1f1e1c;
  --muted: #6b6560;
  --white: #faf8f4;
  --line: rgba(42, 40, 38, 0.12);
  --shadow: 0 18px 48px rgba(28, 27, 25, 0.14);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 1120px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(154, 115, 84, 0.08), transparent 55%),
    linear-gradient(180deg, var(--linen-light) 0%, var(--linen) 48%, #e4ddd2 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--needle-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--charcoal);
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal-deep);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--needle);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38rem;
}

.stitch {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--needle), transparent);
  margin: 1rem 0 1.35rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 233, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--needle);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  font-weight: 450;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--charcoal-deep);
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--linen-light);
  padding: 1rem 1.25rem 1.5rem;
}

.nav-mobile.open {
  display: block;
  animation: slideDown 0.35s var(--ease);
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s, transform 0.3s;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--linen-light);
}

.btn--primary:hover {
  background: var(--charcoal-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--linen-light);
  border-color: rgba(245, 241, 233, 0.45);
}

.btn--ghost:hover {
  background: rgba(245, 241, 233, 0.1);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal-soft);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--linen-light);
}

.btn--needle {
  background: var(--needle);
  color: var(--white);
}

.btn--needle:hover {
  background: var(--needle-deep);
  color: var(--white);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--linen-light);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.35) 0%, rgba(28, 27, 25, 0.55) 40%, rgba(28, 27, 25, 0.88) 100%),
    linear-gradient(90deg, rgba(28, 27, 25, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  max-width: 38rem;
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--linen-light);
  margin-bottom: 1rem;
}

.hero-brand em {
  font-style: italic;
  font-weight: 400;
  color: #d4b498;
}

.hero h1 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: var(--linen);
  margin-bottom: 0.85rem;
  max-width: 28rem;
}

.hero-text {
  color: rgba(245, 241, 233, 0.82);
  margin-bottom: 1.6rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal-soft) 100%);
  color: var(--linen-light);
}

.page-hero h1 {
  color: var(--linen-light);
}

.page-hero .lead {
  color: rgba(235, 230, 220, 0.78);
}

.page-hero .eyebrow {
  color: #d4b498;
}

.page-hero .stitch {
  background: linear-gradient(90deg, #d4b498, transparent);
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--charcoal {
  background: var(--charcoal-deep);
  color: var(--linen);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--linen-light);
}

.section--charcoal .lead,
.section--charcoal p {
  color: rgba(235, 230, 220, 0.82);
}

.section--charcoal .eyebrow {
  color: #d4b498;
}

.section--linen {
  background: linear-gradient(180deg, var(--linen-warm) 0%, var(--linen) 100%);
}

.section--split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .section--split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

/* Service bands — not cards; editorial strips */
.service-band {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.service-band:last-child {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .service-band {
    grid-template-columns: 7rem 1fr auto;
    align-items: start;
    gap: 1.5rem 2rem;
  }
}

.service-band .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--needle);
}

.service-band h3 {
  margin-bottom: 0.4rem;
}

.service-band p {
  color: var(--muted);
  max-width: 36rem;
}

.service-band a {
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
}

/* Image frames */
.img-bleed {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.img-frame {
  overflow: hidden;
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.img-frame:hover img {
  transform: scale(1.04);
}

.img-frame--tall img {
  min-height: 360px;
  max-height: 560px;
}

/* Feature list */
.feature-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.55rem;
  height: 1px;
  background: var(--needle);
}

/* Hours */
.hours-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem 1.5rem;
  max-width: 22rem;
  margin-top: 1rem;
}

.hours-block dt {
  color: var(--charcoal);
  font-weight: 500;
}

.hours-block dd {
  color: var(--muted);
  text-align: right;
}

/* Contact form */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
  }
}

.contact-details p {
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.contact-details a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--charcoal-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--linen-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--needle);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

#form-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(154, 115, 84, 0.12);
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* Legal */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* Footer */
.site-footer {
  background: var(--charcoal-deep);
  color: rgba(235, 230, 220, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.site-footer .logo {
  color: var(--linen-light);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4b498;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(235, 230, 220, 0.8);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--linen-light);
}

.site-footer ul li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(235, 230, 220, 0.12);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal-deep);
  color: var(--linen);
  padding: 1.25rem 1.5rem;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.92rem;
  color: rgba(235, 230, 220, 0.85);
}

.cookie-inner a {
  color: #d4b498;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(28, 27, 25, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-panel {
  background: var(--linen-light);
  color: var(--ink);
  width: min(100%, 420px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.cookie-modal-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.cookie-modal-panel p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.cookie-option:last-of-type {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1.5rem; }
.mx-auto { margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img {
    animation: none;
  }
}
