
:root {
  --bg: #fbf9f6;
  --surface: #ffffff;
  --soft: #f2ece5;
  --text: #24211f;
  --muted: #6f6862;
  --line: #ded6cf;
  --brand: #981b1e;
  --brand-dark: #721214;
  --wood: #9c7656;
  --dark: #211e1c;
  --dark-2: #2c2724;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(35, 28, 23, .10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
section[id] { scroll-margin-top: 122px; }

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,249,246,.94);
  border-bottom: 1px solid rgba(222,214,207,.8);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 280px; height: auto; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
  color: #413b37;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--brand); }
.main-nav .nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--brand);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .18s ease, opacity .18s ease; }
.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); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -230px;
  top: 45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152,27,30,.10), rgba(152,27,30,0) 67%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}
.eyebrow {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero h1, .section-heading h2, .about-grid h2, .contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.35rem, 4.8vw, 4.375rem);
  line-height: 1.02;
}
.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 1.14rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: var(--brand-dark); }
.button-dark { background: #fff; color: var(--dark); }
.button-dark:hover, .button-dark:focus-visible { background: #f4efea; }
.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.button-secondary:hover, .button-secondary:focus-visible { border-color: #aaa098; }

.trust-row {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.trust-row > div {
  padding: 19px 16px 0 0;
}
.trust-row strong {
  display: block;
  font-size: .97rem;
  color: var(--text);
}
.trust-row span {
  display: block;
  margin-top: 3px;
  font-size: .81rem;
  color: var(--muted);
}

.hero-photo {
  position: relative;
  margin: 0;
  border-radius: 120px 18px 18px 18px;
  overflow: hidden;
  background: #e8e1da;
  min-height: 610px;
  box-shadow: var(--shadow);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 47% 52%;
}
.hero-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(31,28,26,.88);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-photo figcaption span { display: block; font-weight: 750; }
.hero-photo figcaption small { display: block; margin-top: 2px; color: #ddd6cf; }

.intro-strip {
  background: var(--dark);
  color: #f5f0eb;
}
.intro-strip-inner {
  padding: 24px 0;
}
.intro-strip p {
  margin: 0;
  font-size: 1.02rem;
}

.section { padding: 104px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2, .about-grid h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.08;
}
.section-heading > p:last-child {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 720px;
}
.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 55px;
  align-items: end;
}
.section-heading-row > p {
  margin: 0 0 6px !important;
}
.review-intro {
  max-width: 390px;
  text-wrap: balance;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 360px;
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-card:hover {
  border-color: #c8bbb1;
  box-shadow: 0 14px 35px rgba(35,28,23,.07);
}
.service-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #f4e7e7;
  color: var(--brand);
  font-weight: 800;
  font-size: .82rem;
}
.service-card h3 {
  margin: 28px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.service-card p {
  color: var(--muted);
  margin: 0 0 18px;
}
.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: #504a46;
  font-size: .92rem;
}

.section-dark {
  background:
    linear-gradient(120deg, rgba(152,27,30,.13), transparent 38%),
    var(--dark);
  color: #f5f0eb;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 9vw, 120px);
}
.eyebrow-light { color: #e2a8a9; }
.about-grid h2 { color: #fff; }
.about-copy { font-size: 1.04rem; color: #d7d0ca; }
.about-copy p { margin: 0 0 20px; }
.about-note {
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #fff !important;
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.project-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(35,28,23,.06);
}
.project-featured { grid-column: 1 / -1; }
.project-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}
.project-image {
  position: relative;
  display: block;
  width: 100%;
  height: 340px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d9d0c8;
  cursor: zoom-in;
}
.project-image-portrait { height: 430px; }
.project-image::after {
  content: "+";
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(31,28,26,.84);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 5px 18px rgba(0,0,0,.2);
  transition: transform .18s ease, background-color .18s ease;
}
.project-image:hover::after,
.project-image:focus-visible::after { transform: scale(1.06); background: var(--brand); }
.project-image:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-image:hover img { transform: scale(1.018); }
.project-image-crop-top img { object-position: center top; }
.project-body {
  display: grid;
  grid-template-columns: minmax(160px, .34fr) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}
.project-body-stack {
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.project-badge {
  align-self: start;
  width: max-content;
  max-width: 100%;
  padding: 9px 13px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.project-badge span {
  display: block;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-badge img {
  width: auto;
  height: 27px;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
}
.project-type {
  margin: 0 0 7px;
  color: var(--brand);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.project-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  line-height: 1.18;
}
.project-body p:last-child { margin: 12px 0 0; color: var(--muted); }
.project-note,
.review-disclaimer {
  margin: 20px 0 0;
  color: #81786f;
  font-size: .8rem;
}

.reviews-section { background: var(--soft); }
.review-overview {
  display: grid;
  grid-template-columns: 1.05fr .7fr .8fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 20px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}
.review-source span,
.review-count span {
  display: block;
  color: #cfc7c0;
  font-size: .75rem;
}
.review-source strong {
  display: block;
  margin-top: 2px;
  font-size: 1.55rem;
  letter-spacing: -.03em;
}
.review-score { display: flex; flex-direction: column; }
.review-score strong { font-size: 2.25rem; line-height: 1; }
.review-score strong span { font-size: 1rem; color: #cfc7c0; }
.stars { color: #f0b545; letter-spacing: .08em; white-space: nowrap; }
.review-score .stars { margin-top: 7px; font-size: .82rem; }
.review-count strong { display: block; font-size: 1rem; }
.review-overview .button { gap: 8px; white-space: nowrap; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
}
.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .78rem;
}
.review-card blockquote {
  margin: 26px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
}
.review-card footer { margin-top: auto; }
.review-card footer strong,
.review-card footer span { display: block; }
.review-card footer span { margin-top: 2px; color: var(--muted); font-size: .82rem; }

.lightbox {
  width: min(92vw, 1180px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #171513;
  color: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.lightbox::backdrop { background: rgba(15,13,12,.82); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 14px 60px 16px 18px; color: #e5ded8; font-size: .9rem; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(20,18,17,.8);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-contact-bar { display: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps article {
  padding: 32px 28px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(222,214,207,.95);
  border-radius: var(--radius);
}
.steps span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  color: var(--brand);
}
.steps h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}
.steps p { margin: 0; color: var(--muted); }

.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}
.contact-direct {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.contact-direct > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-direct span {
  display: block;
  margin-bottom: 4px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted);
  font-weight: 750;
}
.contact-direct a {
  font-size: 1.06rem;
  font-weight: 750;
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-direct p { margin: 0; }
.contact-direct small { color: var(--muted); font-size: .85rem; }

.form-card {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 50px rgba(39,31,26,.07);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
form label { display: block; margin-bottom: 17px; }
form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: .87rem;
  font-weight: 720;
}
input, textarea {
  width: 100%;
  border: 1px solid #cfc6be;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(152,27,30,.10);
}
textarea { resize: vertical; min-height: 165px; }
.form-submit { width: 100%; margin-top: 4px; }
.form-privacy {
  margin: 14px 2px 0;
  color: #756d66;
  font-size: .82rem;
  line-height: 1.55;
}
.form-privacy a { color: var(--brand); text-underline-offset: 2px; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-message {
  margin-bottom: 22px;
  padding: 15px 17px;
  border-radius: 12px;
}
.form-message strong { display: block; margin-bottom: 4px; }
.form-message p, .form-message ul { margin: 0; }
.form-success { background: #eaf5ed; border: 1px solid #b9d8c0; color: #244b2d; }
.form-error { background: #f8e9e9; border: 1px solid #e5bcbc; color: #6e1d20; }

.site-footer {
  background: var(--dark);
  color: #d8d0ca;
  padding: 34px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}
.footer-brand strong { color: #fff; display: block; }
.footer-brand span { font-size: .85rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #fff; font-size: .88rem; }
.site-footer p { margin: 0; font-size: .83rem; }

.legal-page {
  min-height: 100vh;
  background: var(--bg);
}
.legal-wrap {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: 70px 0 110px;
}
.legal-wrap h1, .legal-wrap h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.legal-wrap h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin: 0 0 34px; overflow-wrap: anywhere; hyphens: auto; }
.legal-wrap h2 { margin-top: 42px; font-size: 1.6rem; }
.legal-wrap h3 { margin-top: 30px; font-size: 1.04rem; }
.legal-wrap p, .legal-wrap li { color: #514a45; }
.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--brand);
  font-weight: 750;
  text-decoration: none;
}
@media (max-width: 1080px) {
  .header-inner { min-height: 96px; }
  .brand img { width: 250px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 90px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { display: flex; align-items: center; min-height: 48px; padding: 10px 12px; border-radius: 10px; }
  .main-nav .nav-cta { text-align: center; margin-top: 4px; }

  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-photo { order: 2; min-height: 560px; }
  .hero-photo img { height: 560px; object-position: 50% 55%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading-row { grid-template-columns: 1fr; gap: 10px; }
  .review-overview { grid-template-columns: repeat(3, 1fr); }
  .review-overview .button { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 88px; gap: 16px; }
  .brand img { width: 218px; }
  .main-nav { top: 82px; left: 14px; right: 14px; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(2.5rem, 10.2vw, 3rem); line-height: 1.04; }
  .hero-photo { min-height: 460px; border-radius: 70px 14px 14px 14px; }
  .hero-photo img { height: 460px; object-position: 50% 58%; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row > div { padding-top: 14px; }
  .section { padding: 78px 0; }
  .service-grid, .steps, .field-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .project-grid, .review-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: auto; }
  .project-media-pair {
    display: flex;
    gap: 8px;
    padding: 0 8px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    background: var(--surface);
  }
  .project-media-pair .project-image {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
  .project-image { height: 285px; }
  .project-image-portrait { height: 390px; }
  .project-body { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .project-badge img { max-width: 170px; height: 25px; }
  .review-overview { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .review-source, .review-overview .button { grid-column: 1 / -1; }
  .review-card { min-height: auto; }
  .review-card blockquote { margin: 22px 0 26px; }
  input, textarea { min-height: 52px; font-size: 16px; }
  .button { min-height: 52px; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-links { flex-wrap: wrap; }
  .site-footer { padding-bottom: 108px; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(32,29,27,.96);
    box-shadow: 0 12px 35px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .mobile-contact-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 11px;
    color: #fff;
    font-size: .74rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
  }
  .mobile-contact-bar a:last-child { background: var(--brand); }
  .mobile-contact-bar span { margin-bottom: 2px; font-size: 1rem; }
  .mobile-contact-bar.is-hidden,
  .mobile-contact-bar.is-keyboard-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 22px));
  }
}

@media (max-width: 680px) and (max-height: 500px) {
  .mobile-contact-bar { display: none; }
}
