:root {
  color-scheme: light;
  --ink: #17130f;
  --muted: #6f665d;
  --paper: #fffaf3;
  --panel: #ffffff;
  --line: #e7ded2;
  --brand: #7b1f1f;
  --brand-2: #b58751;
  --accent: #1f3f3a;
  --shadow: 0 18px 55px rgba(40, 29, 19, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(33, 25, 18, .72), rgba(33, 25, 18, .28) 18%, rgba(255, 250, 243, .2) 50%, rgba(33, 25, 18, .28) 82%, rgba(33, 25, 18, .72)),
    linear-gradient(180deg, rgba(255, 250, 243, .72), rgba(244, 236, 226, .88)),
    url("../images/bg1.jpg") center center / cover no-repeat fixed;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

img, iframe { max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: .65rem .9rem;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: .85rem 1.25rem;
  background: rgba(255, 250, 243, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
main {
  max-width: 1200px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, .98), rgba(250, 244, 237, .97)),
    #fffaf3;
  box-shadow: var(--shadow);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 220px;
}
.brand-logo {
  width: 55px;
  height: auto;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.2;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .3rem;
}
.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .8rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--brand);
  background: #f2e6da;
}
.nav-toggle { display: none; }

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: clamp(2rem, 4vw, 3.2rem) 1.5rem;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.8vw, 3.9rem);
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
}
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.hero-copy > p:not(.eyebrow) {
  color: #3f372f;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 62ch;
}
.hero-actions, .download-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.15rem;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}
.button.primary {
  background: var(--brand);
  color: #fff;
}
.button.secondary {
  color: var(--brand);
  background: transparent;
}
.rounded-image {
  display: block;
  width: auto;
  max-height: 360px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}
.hero-media {
  max-width: 340px;
  justify-self: end;
}
.hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 360px;
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}
.hero-showcase {
  min-width: 0;
  display: grid;
  gap: .8rem;
}
.hero-main-image,
.hero-thumbs figure {
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-main-image {
  min-height: 360px;
}
.hero-main-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 430px;
  object-fit: contain;
}
.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.hero-thumbs figure {
  min-height: 118px;
  padding: .45rem;
  box-shadow: 0 10px 30px rgba(40, 29, 19, .06);
}
.hero-thumbs img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-strip span {
  background: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  color: var(--accent);
}
.section {
  padding: clamp(2.1rem, 4vw, 3.5rem) 1.5rem;
}
.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}
.section-heading p:not(.eyebrow), .split p, .note p, .legal p {
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.info-grid.wide {
  grid-template-columns: repeat(4, 1fr);
}
.info-grid div, .note, .contact-card, .hours, .service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(40, 29, 19, .06);
}
.info-grid div { padding: 1.1rem; }
.info-grid strong {
  display: block;
  color: var(--brand);
  font-size: 1.35rem;
}
.info-grid span { color: var(--muted); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  overflow: hidden;
  background: #fff;
}
.service-card img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin: .75rem auto 0;
}
.service-card div { padding: 1rem; }
.service-card a {
  text-decoration: none;
}
.service-card h3 a { color: var(--ink); }
.service-card p { color: var(--muted); font-size: .96rem; }
.cta-band {
  margin: 0 1.5rem 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}
.cta-band p { color: #dbe8e3; }
.cta-band .button { border-color: #fff; background: #fff; color: var(--accent); }

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.gallery-mini img {
  width: auto;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  border-radius: var(--radius);
  margin: auto;
}
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.proof-gallery figure {
  margin: 0;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(40, 29, 19, .05);
}
.proof-gallery img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  border-radius: 6px;
}
.brand-section {
  background: #fff;
  border-block: 1px solid var(--line);
}
.big-logo-mark {
  width: auto;
  max-width: 320px;
  max-height: 260px;
  justify-self: center;
  object-fit: contain;
}
.check-list {
  padding-left: 1.2rem;
  color: var(--muted);
}
.note { padding: clamp(1.2rem, 3vw, 2rem); }

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.price-table th,
.price-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.price-table th {
  background: #f4eadf;
  color: var(--brand);
  font-size: .9rem;
  text-transform: uppercase;
}
.price-table td:last-child {
  white-space: nowrap;
  font-weight: 900;
  color: var(--accent);
}
.small-print {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 1rem;
}
.text-link {
  color: var(--brand);
  font-weight: 800;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
}
.link-grid a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}
.image-prompt-box {
  margin-top: 1.2rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.image-prompt-box h3 {
  margin-bottom: .35rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.steps li {
  counter-increment: steps;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: .8rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}
.contact-card {
  padding: 1.2rem;
  font-style: normal;
}
.contact-card a { display: inline-block; color: var(--brand); font-weight: 800; }
.hours {
  display: grid;
  gap: .25rem;
  margin-top: 1rem;
  padding: 1.2rem;
}
.map {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.legal {
  max-width: 1200px;
  margin: auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--brand);
}
.faq details p {
  color: var(--muted);
  margin: .75rem 0 0;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: #17130f;
  color: #f8efe5;
  box-shadow: var(--shadow);
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035)),
    #211a15;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 34px rgba(0, 0, 0, .24);
}
.footer-logo-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, .28));
}
.footer-wordmark {
  display: grid;
  gap: .2rem;
}
.footer-wordmark strong {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}
.footer-wordmark small {
  color: #d8c9ba;
  font-size: .88rem;
  line-height: 1.25;
}
.footer-brand p,
.footer-panel p,
.footer-links p,
.footer-bottom {
  color: #d8c9ba;
}
.footer-brand p {
  max-width: 64ch;
  margin: 0 0 1rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-badges span {
  padding: .45rem .7rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
}
.footer-panel {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}
.footer-panel h2,
.footer-links h3 {
  margin: 0 0 .75rem;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
.footer-panel h2 {
  font-size: 1.35rem;
}
.footer-panel a {
  display: block;
  font-weight: 900;
  margin-bottom: .4rem;
}
.footer-call {
  font-size: 1.25rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-links > div {
  min-width: 0;
  padding: 1.15rem;
  background: rgba(255, 255, 255, .035);
}
.footer-links h3 {
  font-size: 1rem;
}
.footer-links a,
.footer-links p {
  display: block;
  margin: .35rem 0;
  font-size: .95rem;
}
.footer-address {
  display: grid;
  gap: .28rem;
  margin: .35rem 0 .8rem;
  color: #d8c9ba;
  font-style: normal;
  line-height: 1.35;
}
.footer-address strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}
.footer-address span {
  display: block;
}
.footer-address-link {
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: .2rem !important;
  padding: .45rem .7rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .055);
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1rem clamp(1.5rem, 3vw, 2.6rem);
  font-size: .9rem;
}
.footer-bottom a {
  font-weight: 800;
}

@media (max-width: 980px) {
  body { font-size: 16px; }
  .brand {
    min-width: 0;
  }
  .brand small {
    max-width: 24ch;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: .55rem .85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 900;
  }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    padding: .7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-nav a { justify-content: center; }
  .hero, .split {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-main-image {
    min-height: 300px;
  }
  .trust-strip, .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid,
  .proof-gallery,
  .info-grid.wide,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-top,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-mark {
    align-items: center;
  }
}

@media (max-width: 620px) {
  .site-header { padding: .7rem 1rem; }
  .brand {
    min-width: 0;
    max-width: calc(100% - 88px);
    align-items: center;
    gap: .55rem;
  }
  .brand span {
    display: grid;
    gap: .12rem;
    min-width: 0;
  }
  .brand strong {
    font-size: .96rem;
    line-height: 1.05;
  }
  .brand small {
    display: block;
    max-width: 18ch;
    font-size: .66rem;
    line-height: 1.15;
  }
  .brand-logo {
    width: 38px;
    flex: 0 0 auto;
  }
  .site-nav.open,
  .trust-strip,
  .service-grid,
  .proof-gallery,
  .info-grid,
  .info-grid.wide,
  .link-grid,
  .steps,
  .gallery-mini {
    grid-template-columns: 1fr;
  }
  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
    align-items: start;
  }
  .footer-panel,
  .footer-links > div {
    padding: 1rem;
  }
  .footer-mark {
    width: 100%;
    gap: .85rem;
  }
  .footer-logo-badge {
    width: 64px;
    height: 64px;
  }
  .footer-logo-badge img {
    width: 46px;
    height: 46px;
  }
  .footer-wordmark strong {
    font-size: 1.35rem;
  }
  .footer-wordmark small {
    font-size: .82rem;
    max-width: 22ch;
  }
  .hero {
    padding-top: 1.5rem;
  }
  .hero-main-image {
    min-height: 220px;
  }
  .hero-main-image img {
    max-height: 300px;
  }
  .hero-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
  }
  .hero-thumbs figure {
    min-height: 82px;
  }
  .hero-thumbs img {
    max-height: 82px;
  }
  .hero-actions .button,
  .download-row .button {
    width: 100%;
  }
  .price-table {
    min-width: 0;
  }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tr {
    border-bottom: 1px solid var(--line);
    padding: .85rem;
  }
  .price-table td {
    padding: .2rem 0;
    border: 0;
  }
  .price-table td:last-child {
    margin-top: .35rem;
    font-size: 1.05rem;
  }
}
