:root {
  --ink: #14120f;
  --coal: #24231f;
  --paper: #f5f1e8;
  --porcelain: #fffaf2;
  --sage: #6f7d63;
  --sage-dark: #414b39;
  --brass: #b1894a;
  --wine: #4b2525;
  --mist: #d9d8d0;
  --shadow: 0 24px 80px rgba(20, 18, 15, 0.18);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.section-shell {
  width: min(100% - 40px, var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1180px);
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 250, 242, 0.96);
  border-color: rgba(177, 137, 74, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

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

.site-nav a {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: rgba(20, 18, 15, 0.76);
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(177, 137, 74, 0.14);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: rgba(20, 18, 15, 0.08);
  border: 1px solid rgba(20, 18, 15, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.94) 0%, rgba(20, 18, 15, 0.7) 36%, rgba(20, 18, 15, 0.18) 74%),
    linear-gradient(0deg, rgba(20, 18, 15, 0.72) 0%, rgba(20, 18, 15, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--shell));
  margin: 0 auto;
  padding: 126px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.23rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c39a5c;
  border-color: #c39a5c;
}

.button-quiet {
  color: var(--porcelain);
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.24);
}

.button-dark {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--mist);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-facts li {
  padding: 8px 12px;
  color: rgba(255, 250, 242, 0.86);
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 760;
}

.intro-band,
.services-band,
.shop-band,
.identity-band,
.contact-band {
  padding: 92px 0;
}

.intro-grid,
.statement-grid,
.shop-layout,
.identity-layout,
.qr-layout,
.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 54px;
}

.intro-copy {
  color: rgba(20, 18, 15, 0.76);
  font-size: 1.05rem;
}

.proof-band {
  padding: 42px 0;
  color: var(--porcelain);
  background: var(--sage-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-item {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: var(--radius);
}

.proof-item span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brass);
  font-weight: 900;
}

.proof-item p,
.service-card p,
.statement-copy p,
.identity-copy p,
.qr-copy p,
.contact-copy p,
.site-footer p {
  color: inherit;
  opacity: 0.78;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 290px;
  padding: 28px;
  background: var(--porcelain);
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.07);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
}

.service-marker {
  display: block;
  width: 54px;
  height: 6px;
  margin-bottom: 38px;
  background: linear-gradient(90deg, var(--brass) 0 62%, var(--sage) 62% 100%);
  border-radius: 999px;
}

.statement-band {
  padding: 82px 0;
  color: var(--porcelain);
  background: var(--ink);
}

.statement-grid {
  align-items: center;
}

.statement-media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  background: var(--coal);
}

.statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.statement-copy {
  max-width: 520px;
}

.shop-band {
  color: var(--ink);
  background: var(--porcelain);
}

.shop-layout {
  align-items: center;
}

.shop-copy {
  max-width: 650px;
}

.shop-panel {
  justify-self: end;
  width: min(100%, 470px);
  min-height: 360px;
  padding: 32px;
  color: var(--porcelain);
  background: var(--ink);
  border: 1px solid rgba(177, 137, 74, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shop-label {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--brass);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.08;
}

.shop-panel p {
  margin-bottom: 28px;
  color: rgba(255, 250, 242, 0.78);
}

.shop-links {
  display: grid;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brass);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.identity-band {
  background: #e6e1d6;
}

.identity-layout {
  align-items: center;
}

.identity-copy {
  max-width: 520px;
}

.identity-preview {
  display: grid;
  gap: 18px;
  width: 100%;
  justify-self: end;
}

.business-card {
  width: calc(100% - 28px);
  aspect-ratio: 1004 / 650;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--porcelain);
}

.business-card-front {
  justify-self: start;
}

.business-card-back {
  justify-self: end;
}

.qr-band {
  padding: 72px 0;
  background: var(--porcelain);
}

.qr-layout {
  align-items: center;
}

.qr-copy {
  max-width: 660px;
}

.qr-frame {
  justify-self: end;
  width: min(100%, 320px);
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 18, 15, 0.12);
}

.qr-frame img {
  width: 100%;
  aspect-ratio: 1;
}

.qr-frame span {
  display: block;
  margin-top: 12px;
  font-weight: 900;
  text-align: center;
}

.contact-band {
  display: grid;
  align-items: center;
  min-height: 760px;
  color: var(--porcelain);
  background: var(--coal);
}

.contact-grid {
  align-items: stretch;
}

.contact-copy {
  max-width: 560px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
  padding: 28px;
  background: var(--porcelain);
  border: 1px solid rgba(177, 137, 74, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 820;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbf7ef;
  border: 1px solid rgba(20, 18, 15, 0.18);
  border-radius: var(--radius);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(20, 18, 15, 0.42);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: rgba(132, 45, 45, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(177, 137, 74, 0.2);
}

.field-full,
.form-status,
.contact-form .button {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(20, 18, 15, 0.7);
  font-size: 0.92rem;
  font-weight: 720;
}

.form-status.is-success {
  color: var(--sage-dark);
}

.form-status.is-error {
  color: var(--wine);
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  padding: 34px 0;
  color: var(--porcelain);
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 242, 0.1);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid img {
  margin-bottom: 8px;
}

.footer-logo-frame {
  display: inline-flex;
  width: 220px;
  max-width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  background: var(--porcelain);
  border: 1px solid rgba(177, 137, 74, 0.28);
  border-radius: var(--radius);
}

.footer-logo-frame img {
  width: 100%;
  height: auto;
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 5px;
  color: rgba(255, 250, 242, 0.68);
  text-align: right;
}

.phone-widget {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px 10px 12px;
  color: var(--ink);
  background: var(--brass);
  border: 1px solid rgba(255, 250, 242, 0.35);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.28);
}

.phone-widget svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.phone-widget span {
  display: grid;
  gap: 0;
}

.phone-widget strong {
  font-size: 0.92rem;
  line-height: 1.05;
}

.phone-widget small {
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.15;
}

.phone-widget:hover,
.phone-widget:focus-visible {
  background: #c39a5c;
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 720px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 8px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(20, 18, 15, 0.14);
    border-radius: var(--radius);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-lede {
    max-width: 520px;
    font-size: 1.08rem;
  }

  .intro-grid,
  .statement-grid,
  .shop-layout,
  .identity-layout,
  .qr-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .proof-item,
  .service-card {
    min-height: auto;
  }

  .business-card-back {
    justify-self: start;
  }

  .business-card {
    width: 100%;
  }

  .qr-frame {
    justify-self: start;
  }

  .shop-panel {
    justify-self: start;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .hero-content {
    width: min(100% - 28px, var(--shell));
  }

  .brand img {
    width: 160px;
  }

  .site-header {
    min-height: 62px;
    padding-left: 12px;
  }

  .hero {
    min-height: 83svh;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero-actions,
  .download-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 18, 15, 0.95), rgba(20, 18, 15, 0.74)),
      linear-gradient(0deg, rgba(20, 18, 15, 0.78), rgba(20, 18, 15, 0.08));
  }

  .intro-band,
  .services-band,
  .shop-band,
  .identity-band,
  .contact-band {
    padding: 92px 0 62px;
  }

  .proof-band,
  .qr-band,
  .statement-band {
    padding: 52px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .phone-widget {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

}
