:root {
  --bg: #fbf6ec;
  --bg-soft: #fffaf2;
  --ink: #1c1715;
  --muted: #6f6259;
  --line: rgba(28, 23, 21, 0.18);
  --line-strong: rgba(28, 23, 21, 0.38);
  --wine: #5b001c;
  --wine-dark: #2a0010;
  --gold: #b8862c;
  --gold-soft: #e6c37a;
  --black: #0f0d0c;
  --white: #fffdf8;
  --danger: #8c1d18;
  --ok: #1e6b42;
  --shadow: 0 20px 60px rgba(27, 15, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(91, 0, 28, 0.08), transparent 18%, transparent 82%, rgba(184, 134, 44, 0.09)),
    radial-gradient(circle at 10% 0%, rgba(184, 134, 44, 0.18), transparent 34%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.site-shell:before,
.site-shell:after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 16px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--wine), var(--gold), var(--wine-dark));
  opacity: 0.68;
}

.site-shell:before {
  left: 0;
}

.site-shell:after {
  right: 0;
}

.top-strip {
  position: relative;
  z-index: 4;
  background: var(--black);
  color: var(--bg-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  gap: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 11px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav a:hover,
.nav a.active {
  color: var(--wine);
  border-color: var(--line);
  background: var(--bg-soft);
}

.nav-right {
  justify-content: flex-end;
}

.logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: min(360px, 44vw);
  height: auto;
  filter: drop-shadow(0 15px 24px rgba(91, 0, 28, 0.12));
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--ink);
  padding: 11px 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 40px 0 70px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.95;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(3.1rem, 9vw, 7.2rem);
  letter-spacing: -0.075em;
}

h2 {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.22rem);
  line-height: 1.7;
  margin: 22px 0 0;
}

.hero-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.btn.primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.btn.primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.btn.gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn.ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn.ghost-light:hover {
  background: var(--white);
  color: var(--black);
}

.hero-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--ink);
  background: var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(15, 13, 12, 0.86);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badge div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badge div:last-child {
  border-right: 0;
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.hero-badge span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 76px 0;
}

.section.compact {
  padding: 44px 0;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(91, 0, 28, 0.28), transparent 50%),
    var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section.dark h2,
.section.dark h3,
.section.dark .eyebrow {
  color: var(--white);
}

.section.dark .lead,
.section.dark p,
.section.dark li {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head .lead {
  max-width: 560px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(27, 15, 10, 0.08);
}

.card.dark-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.card .number {
  font-size: 2.7rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.65;
}

.card ul {
  padding-left: 18px;
  margin: 14px 0 0;
}

.kicker-line {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.page-title {
  position: relative;
  z-index: 1;
  padding: 44px 0 38px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(184, 134, 44, 0.2), transparent),
    rgba(255, 250, 242, 0.7);
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.service-tabs,
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 24px;
}

.tab,
.filter-btn {
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--ink);
  padding: 12px 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}

.tab.active,
.filter-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  padding: 20px;
}

.service-item.hidden {
  display: none;
}

.service-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.service-item h3 {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 7px 9px;
  background: rgba(184, 134, 44, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price {
  color: var(--wine);
  font-weight: 900;
  font-size: 1.25rem;
}

.service-item p {
  color: var(--muted);
  line-height: 1.65;
  margin: 12px 0 0;
}

.service-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.service-includes span:before {
  content: "◆";
  color: var(--gold);
  margin-right: 8px;
}

.service-cta {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--black);
}

.gallery-card.large {
  grid-column: span 8;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.84));
}

.gallery-caption strong {
  display: block;
  font-size: 1.1rem;
}

.gallery-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  margin-top: 4px;
}

.review {
  border-left: 4px solid var(--gold);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.quote {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink);
}

.reviewer {
  margin-top: 18px;
  font-weight: 900;
  color: var(--wine);
}

.form-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: start;
}

.form-side {
  background:
    linear-gradient(180deg, rgba(91, 0, 28, 0.55), rgba(15, 13, 12, 0.92)),
    url("images/work-womens-bob.png") center/cover;
  min-height: 100%;
  border: 1px solid var(--ink);
  color: var(--white);
  padding: 28px;
}

.form-side .logo-mini {
  width: 230px;
  margin-bottom: 26px;
  background: rgba(255,255,255,0.86);
  padding: 10px;
}

.form-side p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.form {
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--wine);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fffdf8;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
  border-radius: 0;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wine);
  box-shadow: inset 0 0 0 1px var(--wine);
}

.notice {
  border: 1px solid var(--line-strong);
  background: rgba(184, 134, 44, 0.12);
  padding: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.notice strong {
  color: var(--wine);
}

.success-box {
  display: none;
  border: 1px solid rgba(30, 107, 66, 0.45);
  background: rgba(30, 107, 66, 0.09);
  color: var(--ok);
  padding: 16px;
  line-height: 1.65;
}

.success-box.show {
  display: block;
}

.status-card {
  display: none;
  margin-top: 18px;
}

.status-card.show {
  display: block;
}

.status-line {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.status-line strong {
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.table-like {
  display: grid;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 12px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row strong {
  color: var(--wine);
}

.footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
  padding: 42px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.footer-logo {
  width: 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  margin-bottom: 14px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer h4 {
  color: var(--gold-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.hide {
  display: none !important;
}

@media (max-width: 980px) {
  .top-strip .container {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 2px;
  }

  .header-grid {
    grid-template-columns: 1fr auto 1fr;
    min-height: 88px;
  }

  .mobile-toggle {
    display: inline-flex;
    position: relative;
    z-index: 24;
  }

  .logo {
    width: min(275px, 56vw);
  }

  .nav {
    position: fixed;
    z-index: 22;
    inset: 0 0 auto 0;
    top: 0;
    height: 100vh;
    padding: 120px 20px 30px;
    background: rgba(251, 246, 236, 0.98);
    flex-direction: column;
    align-items: stretch;
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  .nav-right {
    transform: translateX(105%);
  }

  body.nav-open .nav,
  body.nav-open .nav-right {
    transform: translateX(0);
  }

  .nav a {
    border-color: var(--line);
    font-size: 1rem;
    padding: 15px;
    background: var(--bg-soft);
  }

  .hero-layout,
  .form-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img {
    min-height: 440px;
  }

  .grid.three,
  .grid.four,
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card,
  .gallery-card.large {
    grid-column: span 6;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-cta {
    align-items: stretch;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-shell:before,
  .site-shell:after {
    width: 6px;
  }

  .header-grid {
    gap: 8px;
  }

  .logo {
    width: min(230px, 62vw);
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.6rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .actions-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .hero-card img {
    min-height: 390px;
  }

  .hero-badge {
    grid-template-columns: 1fr;
  }

  .hero-badge div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .lead {
    margin-top: 16px;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .form-grid,
  .service-includes {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.large {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .gallery-card img {
    min-height: 340px;
  }

  .table-row,
  .status-line {
    grid-template-columns: 1fr;
  }

  .form-side {
    min-height: 380px;
  }
}