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

:root {
  --charcoal: #262422;
  --charcoal-deep: #161514;
  --charcoal-lift: #3a3734;
  --linen: #e6e0d4;
  --linen-soft: #f0ebe2;
  --linen-deep: #cfc6b6;
  --mill: #8b7355;
  --mill-deep: #6e5a42;
  --ink: #1a1917;
  --muted: #5f5a54;
  --foam: #f7f4ee;
  --line: rgba(38, 36, 34, 0.14);
  --line-light: rgba(240, 235, 226, 0.18);
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Figtree', sans-serif;
  --max: 1140px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.25, 1, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(139, 115, 85, 0.07) 0%, transparent 42%),
    linear-gradient(180deg, var(--linen-soft) 0%, var(--linen) 55%, #ddd5c7 100%);
  min-height: 100vh;
}

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

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

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

ul {
  list-style: none;
}

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

h1 { font-size: clamp(2.35rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.55rem); }
h3 { font-size: clamp(1.28rem, 2.1vw, 1.55rem); }

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

.eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mill);
  margin-bottom: 0.7rem;
}

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

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

.mill-rule--center {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--mill {
  background: var(--mill);
  color: var(--foam);
}

.btn--mill:hover {
  background: var(--mill-deep);
  color: var(--foam);
}

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

.btn--charcoal:hover {
  background: var(--charcoal-deep);
  color: var(--foam);
}

.btn--ghost {
  background: transparent;
  color: var(--foam);
  border-color: rgba(247, 244, 238, 0.45);
}

.btn--ghost:hover {
  background: rgba(247, 244, 238, 0.1);
  color: var(--foam);
}

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

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

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

.btn--linen:hover {
  background: var(--foam);
  color: var(--charcoal-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 235, 226, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
}

.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.35rem;
  font-weight: 600;
  color: var(--charcoal-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo em,
.logo span {
  font-style: italic;
  font-weight: 500;
  color: var(--mill-deep);
}

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

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

.nav-desktop a:hover {
  color: var(--mill-deep);
}

.nav-desktop .btn {
  margin-left: 0.35rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

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

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

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

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nav-mobile a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

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

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(22, 21, 20, 0.78) 0%, rgba(22, 21, 20, 0.45) 48%, rgba(22, 21, 20, 0.55) 100%),
    linear-gradient(0deg, rgba(22, 21, 20, 0.7) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--foam);
  margin-bottom: 1rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero-brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--linen-deep);
}

.hero h1 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  color: var(--linen);
  max-width: 28rem;
  margin-bottom: 0.85rem;
  animation: riseIn 0.9s 0.12s var(--ease) both;
}

.hero-text {
  color: rgba(240, 235, 226, 0.82);
  max-width: 28rem;
  margin-bottom: 1.6rem;
  animation: riseIn 0.9s 0.22s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.9s 0.32s var(--ease) both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(1.1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Page hero */
.page-hero {
  padding: clamp(3rem, 8vh, 4.5rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(139, 115, 85, 0.12), transparent 60%),
    var(--linen-soft);
}

.page-hero h1 {
  max-width: 18ch;
}

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

.section--charcoal {
  background:
    linear-gradient(145deg, var(--charcoal-lift) 0%, var(--charcoal) 40%, var(--charcoal-deep) 100%);
  color: var(--linen);
}

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

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

.section--charcoal .mill-rule {
  background: linear-gradient(90deg, var(--linen-deep), transparent);
}

.section--charcoal p {
  color: rgba(230, 224, 212, 0.88);
}

.section--linen {
  background: var(--linen-soft);
}

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

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

.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

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

.img-frame {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 22px 50px rgba(22, 21, 20, 0.16);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.8s var(--ease);
}

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

.img-frame--tall img {
  aspect-ratio: 3 / 4;
}

.img-frame--wide img {
  aspect-ratio: 16 / 10;
}

/* Offer rails — Tailoriet-style service list */
.offer-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.offer-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

@media (min-width: 720px) {
  .offer-item {
    grid-template-columns: 4.5rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}

.offer-item .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--mill);
}

.offer-item h3 {
  margin-bottom: 0.35rem;
}

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

.offer-item a {
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* Craft tiles */
.craft-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .craft-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.craft-tile {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--foam);
}

.craft-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.9s var(--ease);
}

.craft-tile:hover img {
  transform: scale(1.06);
}

.craft-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(22, 21, 20, 0.88) 0%, rgba(22, 21, 20, 0.25) 100%);
}

.craft-tile > * {
  position: relative;
  z-index: 2;
}

.craft-tile h3 {
  color: var(--foam);
  margin-bottom: 0.4rem;
}

.craft-tile p {
  color: rgba(230, 224, 212, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.craft-tile a {
  color: var(--linen);
  font-weight: 600;
  text-decoration: none;
}

/* Checklist */
.service-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.service-list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--muted);
}

.service-list li::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
  background: var(--mill);
  border-radius: 1px;
}

.section--charcoal .service-list li {
  color: rgba(230, 224, 212, 0.9);
}

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

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

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

.section--charcoal .hours-block dt {
  color: var(--foam);
}

.section--charcoal .hours-block dd {
  color: rgba(230, 224, 212, 0.8);
}

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

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

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

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--mill);
}

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

#form-note {
  margin-top: 1rem;
  color: var(--mill-deep);
  font-weight: 500;
}

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

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

.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;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

/* Footer */
.site-footer {
  background: var(--charcoal-deep);
  color: var(--linen);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

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

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

.site-footer .logo em,
.site-footer .logo span {
  color: var(--linen-deep);
}

.site-footer p {
  color: rgba(230, 224, 212, 0.75);
  max-width: 22rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linen-deep);
  margin-bottom: 0.85rem;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer a {
  color: rgba(230, 224, 212, 0.85);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(230, 224, 212, 0.55);
}

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

/* 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 0;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  border-top: 1px solid var(--line-light);
}

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

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

.cookie-inner p {
  flex: 1 1 16rem;
  font-size: 0.95rem;
  color: rgba(230, 224, 212, 0.88);
}

.cookie-inner a {
  color: var(--linen-deep);
}

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

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(22, 21, 20, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.cookie-modal-panel {
  background: var(--linen-soft);
  color: var(--ink);
  padding: 1.75rem;
  max-width: 420px;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-panel h2 {
  margin-bottom: 0.5rem;
}

.cookie-modal-panel > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

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

.cookie-modal-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Split quote */
.quote-band {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--foam);
  max-width: 28rem;
}

/* Price note */
.note-box {
  padding: 1.25rem 1.4rem;
  background: rgba(139, 115, 85, 0.1);
  border-left: 3px solid var(--mill);
  margin-top: 1.5rem;
}

.note-box p {
  color: var(--muted);
  margin: 0;
}
