:root {
  --ink: #092b49;
  --bronze: #936025;
  --copper: #b46b26;
  --sand: #f3e5cf;
  --cream: #fffaf0;
  --leaf: #214421;
  --red: #bf2d17;
  --charcoal: #1f1b17;
  --line: rgba(9, 43, 73, 0.18);
  --shadow: 0 22px 60px rgba(31, 27, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.1;
  font-size: 0.7rem;
  font-weight: 700;
  align-items: center;
}

.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.82rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
}

nav a,
.map-link {
  text-decoration: none;
}

nav a:hover,
.map-link:hover {
  color: var(--copper);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
}

.header-action {
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(36px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.96) 0%, rgba(243, 229, 207, 0.74) 58%, rgba(33, 68, 33, 0.12) 100%),
    radial-gradient(circle at 94% 18%, rgba(191, 45, 23, 0.16), transparent 24%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(3.5rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-text,
.section-copy p,
.about-text p,
.products p,
.visit p {
  max-width: 660px;
  font-size: 1.06rem;
}

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

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(9, 43, 73, 0.18);
}

.button.secondary {
  border: 1px solid var(--bronze);
  color: var(--bronze);
  background: rgba(255, 250, 240, 0.72);
}

.note {
  margin: 18px 0 0;
  color: var(--bronze);
  font-weight: 700;
}

.hero-media img {
  width: min(100%, 560px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.intro-band div {
  display: grid;
  gap: 2px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-band span {
  color: #f2c18c;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  line-height: 1;
}

.featured,
.about,
.additional-services,
.products,
.visit {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  background: #fff7e9;
}

/* Grand Opening promo popup */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-popup.open {
  display: flex;
  animation: promo-fade 0.25s ease;
}
@keyframes promo-fade { from { opacity: 0; } to { opacity: 1; } }
.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 43, 73, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.promo-popup-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 30px 30px;
  background: #fffaf0;
  border-radius: 14px;
  border-top: 6px solid var(--copper);
  box-shadow: 0 30px 80px rgba(9, 43, 73, 0.35);
  text-align: left;
  animation: promo-pop 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.05);
}
@keyframes promo-pop {
  from { transform: scale(0.92) translateY(16px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.promo-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  font-size: 1.8rem;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.6;
}
.promo-popup-close:hover { opacity: 1; }
.promo-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border: 1px solid rgba(180, 107, 38, 0.5);
  border-radius: 999px;
  background: rgba(243, 229, 207, 0.45);
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promo-popup-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: var(--spiral) center / contain no-repeat;
          mask: var(--spiral) center / contain no-repeat;
}
.promo-popup-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 4.5vw, 2.6rem);
  line-height: 1.05;
  color: var(--ink);
}
.promo-popup-card h2::after { display: none; }
.promo-popup-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(147, 96, 37, 0.28);
  background: rgba(255, 250, 240, 0.7);
}
.promo-popup-price .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--bronze);
  line-height: 0.9;
}
.promo-popup-price small {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 600;
}
.promo-popup-card > p {
  margin: 0 0 22px;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.55;
}
.promo-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.promo-popup-actions .button {
  flex: 1;
  min-width: 140px;
}
.promo-popup-actions .button-link {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bronze);
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  max-width: 520px;
  margin: 30px 0 24px;
  padding: 20px;
  border: 1px solid rgba(147, 96, 37, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
  color: var(--ink);
  font-weight: 700;
}

.price {
  color: var(--bronze);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.85;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.service-points li {
  border-left: 3px solid var(--copper);
  padding: 10px 12px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  font-weight: 700;
}

.promo-image a {
  position: relative;
  display: block;
  width: min(100%, 490px);
  margin-inline: auto;
  color: #fff;
  text-decoration: none;
}

.promo-image img {
  width: min(100%, 490px);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(9, 43, 73, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 18px;
}

.image-modal:target {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 22, 34, 0.82);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  max-height: 92vh;
}

.modal-content img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  background: linear-gradient(180deg, var(--cream), var(--sand));
}

.about-grid {
  display: grid;
  gap: 14px;
}

.about-grid article {
  padding: 24px;
  border: 1px solid rgba(9, 43, 73, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
}

.about-grid p {
  margin-bottom: 0;
}

.additional-services {
  background: #fffaf0;
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  max-width: 680px;
  font-size: 1.06rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(147, 96, 37, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(243, 229, 207, 0.42), rgba(255, 250, 240, 0.9));
}

.service-card-grid p {
  margin-bottom: 0;
}

.products {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: var(--leaf);
  color: #fff;
}

.products h2 {
  color: #fff;
}

.products p {
  color: #f8ead6;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.98)),
    linear-gradient(135deg, var(--sand), #fff);
}

.visit-details {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-left: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 27, 23, 0.1);
}

.visit-details a:first-child {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1;
  text-decoration: none;
}

address {
  color: var(--charcoal);
  font-style: normal;
  font-weight: 600;
}

.map-link {
  color: var(--bronze);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--bronze);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--copper);
}

.qr-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(9, 43, 73, 0.14);
  color: var(--ink);
  font-weight: 800;
}

.qr-card div {
  display: grid;
  gap: 8px;
}

.qr-card img {
  width: 82px;
  aspect-ratio: 1;
  border: 8px solid #fff;
  box-shadow: 0 8px 22px rgba(31, 27, 23, 0.12);
}

.qr-link {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
}

.menu-hero {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.98), rgba(243, 229, 207, 0.78)),
    radial-gradient(circle at 88% 8%, rgba(191, 45, 23, 0.13), transparent 28%);
}

.menu-hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.menu-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.service-menu {
  display: grid;
  gap: 18px;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 76px);
  background: #fff7e9;
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(22px, 4vw, 34px) clamp(22px, 4vw, 34px) clamp(22px, 4vw, 34px) clamp(34px, 5vw, 56px);
  border: 1px solid rgba(9, 43, 73, 0.14);
  border-left: 5px solid var(--card-accent, var(--copper));
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 14px 32px rgba(31, 27, 23, 0.08);
}

.menu-card::before {
  content: '';
  position: absolute;
  top: clamp(22px, 4vw, 34px);
  right: clamp(22px, 4vw, 34px);
  width: 38px;
  height: 38px;
  background-color: var(--card-accent, var(--copper));
  -webkit-mask: var(--card-icon, none) center / contain no-repeat;
          mask: var(--card-icon, none) center / contain no-repeat;
  opacity: 0.72;
}

.menu-card h2 {
  color: var(--card-accent, var(--ink));
}

.menu-card .menu-meta span:first-child {
  color: var(--card-accent, var(--ink));
}

/* Per-service accent palette + motif */
.card-coral {
  --card-accent: #c9594a;
  --card-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 3c1.7 1.2 2.7 3 2.7 4.7 0 .9-.3 1.7-.7 2.4 1.5-.5 3.1-.4 4.4.5 1.4 1 2 2.7 1.4 4.2-.5 1.5-2 2.3-3.6 2.1.4 1.3 0 2.8-1.1 3.7-1.3 1-3.2.8-4.4-.4-.3-.3-.5-.6-.7-1-.2.4-.4.7-.7 1-1.2 1.2-3.1 1.4-4.4.4-1.1-.9-1.5-2.4-1.1-3.7-1.6.2-3.1-.6-3.6-2.1-.6-1.5 0-3.2 1.4-4.2 1.3-.9 2.9-1 4.4-.5-.4-.7-.7-1.5-.7-2.4C9.3 6 10.3 4.2 12 3zm0 8a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5z'/></svg>");
}
.card-sage {
  --card-accent: #4a6b48;
  --card-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 4c.5 0 1 .4 1 1v6c0 .3.2.5.5.5s.5-.2.5-.5V4c0-.5.5-1 1-1s1 .4 1 1v7c0 .3.2.5.5.5s.5-.2.5-.5V5c0-.5.5-1 1-1s1 .4 1 1v8c0 .3.2.5.5.5s.5-.2.5-.5V7c0-.5.5-1 1-1s1 .4 1 1v9c0 3.3-2.7 6-6 6s-6-2.7-6-6V8c0-.5.5-1 1-1s1 .4 1 1v5c0 .3.2.5.5.5s.5-.2.5-.5V5c0-.5.5-1 1-1z'/></svg>");
}
.card-champagne {
  --card-accent: #a87a36;
  --card-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='3.5' fill='black'/><path stroke='black' stroke-width='1.6' stroke-linecap='round' d='M12 2v3M12 19v3M2 12h3M19 12h3M4.9 4.9l2.1 2.1M17 17l2.1 2.1M4.9 19.1L7 17M17 7l2.1-2.1'/></svg>");
}
.card-honey {
  --card-accent: #c98a1d;
  --card-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2c0 0 6 7.5 6 12 0 3.3-2.7 6-6 6s-6-2.7-6-6c0-4.5 6-12 6-12z'/></svg>");
}
.card-ink {
  --card-accent: #143a5f;
  --card-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='black' stroke-width='1.6' stroke-linejoin='round' d='M12 3L20 8v8l-8 5-8-5V8z'/><circle cx='12' cy='12' r='2.2' fill='black'/></svg>");
}

.featured-menu-card {
  --card-accent: #b46b26;
  --card-icon: url("assets/spiral-mask.png");
}

.featured-menu-card {
  border-color: rgba(180, 107, 38, 0.34);
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(243, 229, 207, 0.72));
}

.menu-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.menu-card p {
  max-width: 900px;
  margin-bottom: 0;
}

.menu-meta {
  display: grid;
  align-content: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.menu-meta span {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid var(--copper);
  background: rgba(255, 255, 255, 0.54);
}

.compact-visit {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 74px);
}

footer p {
  margin: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px clamp(18px, 4vw, 58px) 18px;
    background: rgba(255, 250, 240, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 32px rgba(31, 27, 23, 0.10);
  }
  nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(9, 43, 73, 0.08);
    font-size: 1.05rem;
  }
  .nav-open nav {
    display: flex;
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero,
  .featured,
  .about,
  .products,
  .visit,
  .menu-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

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

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

/* ---------- Logo motif accents ---------- */

:root {
  --spiral: url("assets/spiral-mask.png");
  --divider: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 8'><circle cx='4' cy='4' r='1' fill='black'/><line x1='10' y1='4' x2='32' y2='4' stroke='black' stroke-width='0.6'/><polygon points='48 1,52 7,44 7' fill='black'/><line x1='64' y1='4' x2='86' y2='4' stroke='black' stroke-width='0.6'/><circle cx='92' cy='4' r='1' fill='black'/></svg>");
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0 0.04  0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--spiral) center / contain no-repeat;
          mask: var(--spiral) center / contain no-repeat;
}

h2::after {
  content: '';
  display: block;
  width: 144px;
  height: 10px;
  margin-top: 22px;
  background-color: currentColor;
  -webkit-mask: var(--divider) left center / contain no-repeat;
          mask: var(--divider) left center / contain no-repeat;
  opacity: 0.5;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 460px;
  height: 460px;
  background-color: var(--copper);
  -webkit-mask: var(--spiral) center / contain no-repeat;
          mask: var(--spiral) center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

@media (max-width: 520px) {
  .site-header {
    gap: 14px;
    padding: 12px 14px;
  }

  .brand-mark {
    font-size: 1.38rem;
  }

  .brand {
    font-size: 0.58rem;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

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

  .button {
    width: 100%;
  }
}
