/* ==========================================================================
   Lou Bow Menus — Section 1 (Landing + Contact)
   Design concept: the site itself is typeset like the thing the company
   makes — an open menu. A dark "cover" panel meets a cream "page" panel;
   the services list reads like a menu's categories; the process reads like
   the numbered courses of a tasting menu.
   ========================================================================== */

:root {
  /* Color */
  --paper: #f3ecdd;
  --paper-dim: #eae0c9;
  --paper-card: #faf6ec;
  --ink: #1d1712;
  --ink-soft: #423830;
  --leather: #241611;
  --leather-2: #35211a;
  --maroon: #7c1f35;
  --maroon-dark: #591526;
  --brass: #ad8a52;
  --line: rgba(29, 23, 18, 0.16);
  --line-on-dark: rgba(243, 236, 221, 0.22);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --page-max: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--maroon); color: var(--paper); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 48px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover { color: var(--maroon); border-color: var(--maroon); }

.main-nav .nav-cta {
  color: var(--paper);
  background: var(--maroon);
  padding: 9px 18px;
  border-radius: var(--radius-s);
  font-weight: 600;
  transition: background 0.15s ease;
}

.main-nav .nav-cta:hover { background: var(--maroon-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero: the open menu ---------- */

.hero {
  background: var(--paper);
  padding: 40px 0 28px;
}

.hero-cover {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  min-height: 38vh;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(29, 23, 18, 0.4);
}

.hero-left {
  background:
    radial-gradient(120% 140% at 15% 10%, rgba(173, 138, 82, 0.14), transparent 55%),
    var(--leather);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-left::after {
  /* the spine/binding of the menu */
  content: "";
  position: absolute;
  right: -1px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brass) 15%, var(--brass) 85%, transparent);
  opacity: 0.55;
}

.hero-eyebrow {
  color: var(--brass);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  color: var(--paper);
  max-width: 11ch;
}

.hero-left .est {
  margin-top: 22px;
  color: rgba(243, 236, 221, 0.65);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.hero-right {
  background: var(--paper-card);
  padding: 40px 48px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right .lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius-s);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--maroon);
  color: var(--paper);
}
.btn-primary:hover { background: var(--maroon-dark); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--maroon); color: var(--maroon); }

.hero-facts {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-facts div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.hero-facts div span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Section shell ---------- */

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

/* Tighter gap directly under the hero card, since its own bottom
   padding already provides some of the breathing room. */
.hero + .section {
  padding-top: clamp(32px, 4.5vw, 55px);
}

.section-heading {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-heading .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--maroon);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.section-heading p {
  margin-top: 14px;
  color: var(--ink-soft);
  max-width: 54ch;
}

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

/* ---------- Services — set like a menu ---------- */

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.menu-row h3 {
  font-size: 1.3rem;
}

.menu-row p {
  color: var(--ink-soft);
  max-width: 56ch;
}

.menu-row .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--maroon);
  border: 1px solid var(--maroon);
  border-radius: 999px;
  padding: 3px 11px;
}

/* ---------- Process — the actual sequence ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  counter-reset: course;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  display: none;
}

@media (min-width: 860px) {
  .process::before { display: block; }
}

.process-step {
  padding: 0 22px 0 0;
  position: relative;
}

.process-step:first-child { padding-left: 0; }

.course-mark {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  background: var(--paper);
  display: inline-block;
  padding-right: 10px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin-top: 16px;
  font-size: 1.15rem;
}

.process-step p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Portfolio teaser ---------- */

.portfolio-teaser {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.portfolio-frame {
  background: var(--leather);
  padding: 14px;
  border-radius: var(--radius-s);
  box-shadow: 0 30px 60px -30px rgba(29, 23, 18, 0.45);
  border: none;
  display: block;
  width: 100%;
  cursor: zoom-in;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.portfolio-frame:hover,
.portfolio-frame:focus-visible {
  box-shadow: 0 34px 64px -26px rgba(29, 23, 18, 0.55);
}

.portfolio-frame img {
  border-radius: 2px;
}

.frame-zoom {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.5);
}

.portfolio-frame:hover .frame-zoom,
.portfolio-frame:focus-visible .frame-zoom {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}

.portfolio-copy p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.portfolio-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.portfolio-client .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}

.portfolio-client .meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

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

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin-bottom: 16px;
}

.contact-info p { color: var(--ink-soft); }

.contact-detail {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-detail div { margin-bottom: 16px; }

.contact-detail span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}

.contact-detail strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}

form.order-pad {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: clamp(24px, 4vw, 40px);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 8px 2px;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--maroon);
  outline: none;
}

.field textarea { resize: vertical; min-height: 96px; }

.field-error {
  display: block;
  min-height: 1.1em;
  font-size: 0.78rem;
  color: var(--maroon);
  margin-top: 6px;
}

.field.has-error input,
.field.has-error textarea { border-color: var(--maroon); }

/* Honeypot — hidden from real visitors, left open for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-row {
  margin: 26px 0;
}

.captcha-box {
  border: 1px dashed var(--line);
  border-radius: var(--radius-s);
  padding: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--paper);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-status {
  font-size: 0.88rem;
}

.form-status[data-state="success"] { color: #3a6b46; }
.form-status[data-state="error"] { color: var(--maroon); }

.btn[disabled] { opacity: 0.6; cursor: progress; }

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

.site-footer {
  background: var(--leather);
  color: rgba(243, 236, 221, 0.82);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img { height: 56px; opacity: 0.95; }

.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--paper); }

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(243, 236, 221, 0.75);
}

.footer-links a:hover { color: var(--paper); }

.footer-services {
  font-size: 0.85rem;
  color: rgba(243, 236, 221, 0.6);
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(243, 236, 221, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

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

@media (max-width: 900px) {
  .hero-cover { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; padding-bottom: 40px; }
  .hero-left::after { display: none; }
  .hero-right { padding-top: 40px; }
  .portfolio-teaser { grid-template-columns: 1fr; }
  .portfolio-teaser .portfolio-copy { order: 2; }
  .contact-shell { grid-template-columns: 1fr; }
  .menu-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 20px;
  }

  .main-nav.open a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
}

/* ---------- Image viewer (lightbox) ---------- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 7, 5, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}

.lightbox-stage img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
  cursor: grab;
}

.lightbox-stage img.dragging { cursor: grabbing; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-on-dark);
  background: rgba(243, 236, 221, 0.08);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lightbox-close:hover { background: rgba(243, 236, 221, 0.18); }

.lightbox-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(243, 236, 221, 0.6);
  font-size: 0.8rem;
  text-align: center;
  padding: 0 20px;
}

@media (max-width: 640px) {
  .lightbox-hint { display: none; }
}

@media (max-width: 720px) {
  .frame-zoom {
    opacity: 1;
    transform: none;
  }
}
