:root {
  --paper: #f6efe1;
  --surface: #fff9ee;
  --surface-strong: #f0ddbd;
  --ink: #15110d;
  --muted: #6f5d4f;
  --red: #b83522;
  --red-deep: #8d2418;
  --gold: #e0a224;
  --green: #4b6b3c;
  --border: #dfd0b8;
  --shadow: 0 18px 50px rgba(37, 20, 10, 0.14);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: var(--ink);
  color: #fff7eb;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100vw - 1180px) / 2));
  background: rgba(255, 249, 238, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--surface-strong);
  color: var(--ink);
}

.header-call {
  align-self: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff7eb;
  font-weight: 800;
  padding: 0.7rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-call:hover,
.button--primary:hover {
  background: var(--red-deep);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(0, 760px) minmax(280px, 360px) minmax(1rem, 1fr);
  align-items: end;
  gap: 2rem;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(14, 8, 4, 0.88), rgba(25, 12, 7, 0.62) 47%, rgba(14, 8, 4, 0.2)),
    linear-gradient(0deg, rgba(14, 8, 4, 0.7), rgba(14, 8, 4, 0.08) 55%);
}

.hero__content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero__content {
  grid-column: 2;
  color: #fff9ee;
  padding: 4rem 0;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-card__label {
  color: #ffd07a;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 760px;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero__copy {
  font-size: 1.15rem;
  max-width: 670px;
  margin: 1.4rem 0 0;
}

.hero__actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  background: var(--red);
  color: #fff7eb;
}

.button--secondary {
  background: #fff7eb;
  border-color: #fff7eb;
  color: var(--ink);
}

.button--ghost {
  background: rgba(255, 249, 238, 0.14);
  border-color: rgba(255, 249, 238, 0.55);
  color: #fff9ee;
}

.order-panel .button--ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-card {
  grid-column: 3;
  background: rgba(255, 249, 238, 0.95);
  border: 1px solid rgba(255, 249, 238, 0.75);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 0.25rem;
  margin-bottom: 4rem;
  padding: 1.25rem;
}

.hero-card strong {
  font-size: 1.35rem;
}

.hero-card a {
  color: var(--red-deep);
  font-weight: 800;
}

.action-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.info-tile {
  background: var(--surface);
  color: var(--ink);
  min-height: 150px;
  padding: 1.35rem;
  text-decoration: none;
}

.info-tile span {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.info-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.info-tile small {
  color: var(--muted);
  display: block;
  margin-top: 0.55rem;
}

.section,
.story,
.order-panel,
.site-footer {
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section--paper {
  background: var(--paper);
}

.section__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 860px;
}

.section__intro p:not(.eyebrow),
.story__copy p,
.order-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 700px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  min-height: 260px;
  padding: 1.25rem;
}

.service-card img {
  height: 56px;
  width: 56px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-card a {
  align-self: end;
  color: var(--red-deep);
  font-weight: 900;
}

.story {
  align-items: stretch;
  background: var(--ink);
  color: #fff9ee;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.story__media {
  min-height: 520px;
  overflow: hidden;
}

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

.story__copy {
  align-content: center;
  display: grid;
  gap: 1rem;
  padding: 4rem;
}

.story__copy h2 {
  color: #fff9ee;
}

.story__copy p {
  color: #e8d8c0;
}

.story__copy .button {
  justify-self: start;
}

.gallery-section {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 310px;
  gap: 1rem;
}

.gallery-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-item figcaption {
  background: rgba(21, 17, 13, 0.76);
  bottom: 0;
  color: #fff9ee;
  font-size: 0.84rem;
  font-weight: 800;
  left: 0;
  padding: 0.55rem 0.75rem;
  position: absolute;
  right: 0;
}

.order-panel {
  align-items: center;
  background: var(--gold);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.order-panel .eyebrow {
  color: var(--red-deep);
}

.order-panel p {
  color: #3b2c1f;
  margin-top: 1rem;
}

.site-footer {
  background: var(--ink);
  color: #fff9ee;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.site-footer p {
  color: #d9c8ae;
  margin: 0.65rem 0 0;
}

.footer-brand {
  color: #fff9ee;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a {
  color: #ffd07a;
}

.owner-cta {
  border-left: 1px solid rgba(255, 249, 238, 0.25);
  padding-left: 1.5rem;
}

.owner-cta a {
  display: inline-block;
  font-weight: 900;
  margin-top: 1rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    background: var(--ink);
    border: 0;
    border-radius: 999px;
    display: inline-grid;
    height: 42px;
    justify-self: end;
    place-items: center;
    width: 42px;
  }

  .nav-toggle__line,
  .nav-toggle__line::before,
  .nav-toggle__line::after {
    background: #fff9ee;
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    position: relative;
    width: 18px;
  }

  .nav-toggle__line::before {
    position: absolute;
    top: -6px;
  }

  .nav-toggle__line::after {
    position: absolute;
    top: 6px;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    background: var(--surface);
    border-top: 1px solid var(--border);
    display: grid;
    gap: 0.35rem;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-top: 0.75rem;
  }

  .site-nav.is-open a {
    border-radius: 8px;
    padding: 0.8rem;
  }

  .hero {
    grid-template-columns: 1rem minmax(0, 1fr) 1rem;
    min-height: auto;
    padding: 4rem 0 2rem;
  }

  .hero__content,
  .hero-card {
    grid-column: 2;
  }

  .hero__content {
    padding: 3rem 0 1rem;
  }

  .hero-card {
    margin-bottom: 0;
  }

  .action-strip,
  .service-grid,
  .story,
  .order-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-actions {
    margin-top: 0;
  }

  .owner-cta {
    border-left: 0;
    border-top: 1px solid rgba(255, 249, 238, 0.25);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: 1.08rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero__actions,
  .order-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .story__copy {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .story__copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .story__media {
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .info-tile {
    min-height: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
