﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --black: #0a0a09;
  --panel: #12110f;
  --panel-soft: #1a1714;
  --text: #f5f2ec;
  --muted: #aaa39a;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d7953b;
  --gold-bright: #f2b15d;
  --steel: #7d8786;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: #74512d;
  border-radius: 999px;
}

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

.background-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(215, 149, 59, 0.18), transparent 31%),
    radial-gradient(circle at bottom left, rgba(125, 135, 134, 0.12), transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 9, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 1rem;
  color: var(--text);
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 149, 59, 0.45);
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand strong,
.hero h1,
.section-intro h2,
.orders h2,
.footer h2,
.hero-card h2,
.features h3,
.product-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.45rem;
  font-weight: 600;
}

.nav {
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.nav a,
.footer-links a {
  color: #d8d2ca;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--gold-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 82px);
}

.eyebrow {
  margin-bottom: 1.35rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  font-weight: 600;
  line-height: 0.95;
}

.lead,
.section-intro p,
.orders-text,
.hero-card p,
.features p,
.product-content span,
.form-note,
.footer p {
  color: var(--muted);
  line-height: 1.85;
}

.lead {
  max-width: 660px;
  margin-top: 2rem;
  font-size: 1.08rem;
}

.actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  padding: 0 1.35rem;
}

.primary,
.quote-form button {
  border: 0;
  background: var(--gold);
  color: #11100f;
}

.primary:hover,
.quote-form button:hover {
  background: var(--gold-bright);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel-soft), #0c0b0a);
  padding: 1.2rem;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero-frame {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid rgba(215, 149, 59, 0.16);
  border-radius: 8px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  color: #776f66;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.blade-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
}

.blade-shape {
  width: 34px;
  height: 340px;
  border-radius: 999px 999px 32px 32px;
  transform: rotate(45deg);
  background: linear-gradient(to bottom, #f7f4ed 0%, var(--steel) 48%, #171716 100%);
  box-shadow: 0 0 55px rgba(215, 149, 59, 0.16);
}

.handle-shape {
  position: absolute;
  width: 40px;
  height: 125px;
  margin-top: 230px;
  margin-left: 210px;
  border-radius: 999px;
  transform: rotate(45deg);
  background: linear-gradient(to bottom, #7a4d2a, #2b1a12);
}

.hero-card h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.hero-card p {
  margin-top: 1rem;
}

.features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

.features article,
.product-card,
.gallery-item,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.features article {
  padding: 2rem;
}

.feature-icon {
  color: var(--gold-bright);
  font-weight: 800;
}

.features h3 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 500;
}

.features p {
  margin-top: 1rem;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 4rem;
}

.section-intro h2,
.orders h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
}

.section-intro p {
  margin-top: 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: 3rem;
  align-items: end;
  max-width: none;
}

.gallery-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(35, 31, 27, 0.88), rgba(9, 9, 10, 0.96)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
  color: #dad5cf;
}

.gallery-item.large {
  grid-column: span 2;
  min-height: 420px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.product-card {
  overflow: hidden;
}

.product-image {
  min-height: 310px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1b1815, #080809);
}

.mini-blade {
  width: 18px;
  height: 190px;
  border-radius: 999px;
  transform: rotate(48deg);
  background: linear-gradient(to bottom, #f7f4ed, #747c7b 58%, #332016 59%);
}

.mini-blade.machete {
  width: 28px;
  height: 210px;
  border-radius: 999px 999px 48px 48px;
}

.mini-blade.sable {
  width: 14px;
  height: 230px;
  transform: rotate(38deg);
}

.product-content {
  padding: 2rem;
}

.product-content p {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-content h3 {
  margin-top: 0.85rem;
  font-size: 2rem;
  font-weight: 500;
}

.product-content span {
  display: block;
  margin-top: 1rem;
}

.orders {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  background: #11100f;
}

.orders-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(3rem, 7vw, 5rem);
}

.orders-text {
  margin-top: 1.5rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-item span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(215, 149, 59, 0.42);
  border-radius: 8px;
  color: var(--gold-bright);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.28);
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: #ded8d0;
  font-size: 0.95rem;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.95rem;
  background: #181716;
  color: var(--text);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .full,
.quote-form button,
.form-note {
  grid-column: span 2;
}

.quote-form button {
  cursor: pointer;
  font-size: 1rem;
}

.form-note {
  font-size: 0.84rem;
}

.footer {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer h2 {
  font-size: 2.4rem;
  font-weight: 500;
}

.footer p {
  margin-top: 0.4rem;
}

.footer-links {
  gap: 2rem;
}

.fade-in {
  animation: fadeIn 0.9s ease both;
}

.fade-in-delay {
  animation: fadeIn 1.1s ease 0.08s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .orders-inner,
  .features,
  .gallery-grid,
  .product-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .quote-form .full,
  .quote-form button,
  .form-note {
    grid-column: span 1;
  }

  .hero-frame {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .orders {
    padding: 5rem 1.25rem;
  }

  .header,
  .footer,
  .features {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-frame {
    min-height: 460px;
    padding: 1.25rem;
  }
}

.page-hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.page-hero h1 {
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.page-section-tight {
  padding-top: 2.5rem;
}

.quick-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-grid a,
.contact-grid article,
.catalog-embed-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.quick-grid a {
  min-height: 130px;
  display: flex;
  align-items: end;
  padding: 1.25rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.quick-grid a:hover {
  color: var(--gold-bright);
  border-color: rgba(215, 149, 59, 0.38);
}

.catalog-embed-placeholder {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(32, 28, 24, 0.82), rgba(10, 10, 9, 0.96)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
}

.catalog-embed-placeholder h2,
.story-layout h2 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.catalog-embed-placeholder p:last-child,
.story-layout > p,
.contact-grid p {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.video-placeholder {
  min-height: 360px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 3rem;
  align-items: start;
}

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

.contact-grid article {
  padding: 2rem;
}

.contact-grid h3 {
  margin-top: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

.page-orders {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .quick-grid,
  .contact-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }
}

/* Minimal editorial refinement */
:root {
  --black: #080807;
  --panel: #0f0e0d;
  --panel-soft: #13110f;
  --text: #f1eee8;
  --muted: #9b948b;
  --line: rgba(241, 238, 232, 0.11);
  --gold: #b98243;
  --gold-bright: #d0a064;
  --steel: #8c918e;
}

body {
  background: #080807;
  letter-spacing: 0;
}

.background-glow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 28%),
    #080807;
}

.section,
.features,
.footer,
.orders-inner {
  max-width: 1160px;
}

.section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.header {
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(8, 8, 7, 0.88);
  border-bottom-color: rgba(241, 238, 232, 0.08);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  border-color: rgba(241, 238, 232, 0.18);
}

.brand small {
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}

.brand strong {
  font-size: 1.25rem;
}

.nav {
  gap: clamp(0.9rem, 2.2vw, 1.6rem);
}

.nav a,
.footer-links a {
  color: #c7c0b7;
  font-size: 0.92rem;
}

.hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  min-height: calc(100vh - 72px);
}

.eyebrow {
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.93;
}

.lead {
  max-width: 600px;
  color: #b6afa6;
  font-size: 1rem;
  line-height: 1.9;
}

.button,
.quote-form button {
  min-height: 46px;
  border-radius: 4px;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary,
.quote-form button {
  background: #c18b4c;
  color: #080807;
}

.secondary {
  background: transparent;
  border-color: rgba(241, 238, 232, 0.18);
}

.hero-card,
.features article,
.product-card,
.gallery-item,
.quote-form,
.quick-grid a,
.contact-grid article,
.catalog-embed-placeholder {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.hero-card {
  padding: 0;
  background: transparent;
}

.hero-frame {
  min-height: 560px;
  border-color: rgba(241, 238, 232, 0.11);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.hero-meta {
  color: #7f786f;
  letter-spacing: 0.18em;
}

.blade-wrap {
  min-height: 260px;
}

.blade-shape {
  width: 22px;
  height: 285px;
  box-shadow: none;
  background: linear-gradient(to bottom, #efebe3 0%, #858b88 52%, #181614 100%);
}

.handle-shape {
  width: 30px;
  height: 98px;
  margin-top: 190px;
  margin-left: 172px;
  background: linear-gradient(to bottom, #6b4529, #20140e);
}

.hero-card h2,
.features h3,
.product-content h3,
.footer h2,
.catalog-embed-placeholder h2,
.story-layout h2,
.section-intro h2,
.orders h2,
.contact-grid h3 {
  font-weight: 400;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.features {
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features article {
  border: 0;
  border-right: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.features article:last-child {
  border-right: 0;
}

.feature-icon,
.product-content p {
  color: var(--gold-bright);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.gallery-grid,
.product-grid,
.quick-grid,
.contact-grid {
  gap: 0.75rem;
}

.gallery-item {
  background: linear-gradient(180deg, #151311, #0c0b0a);
  border-color: rgba(241, 238, 232, 0.1);
}

.product-image {
  min-height: 280px;
  background: #11100f;
}

.product-content {
  padding: 1.5rem;
}

.orders {
  background: #0d0c0b;
  border-top: 1px solid rgba(241, 238, 232, 0.08);
  border-bottom: 1px solid rgba(241, 238, 232, 0.08);
}

.process-item span {
  border-radius: 4px;
  color: #c8a06d;
  border-color: rgba(241, 238, 232, 0.14);
}

.quote-form {
  background: rgba(255, 255, 255, 0.015);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  border-radius: 4px;
  background: #0d0c0b;
  border-color: rgba(241, 238, 232, 0.12);
}

.catalog-embed-placeholder {
  min-height: 380px;
  background: #0f0e0d;
}

.quick-grid a {
  min-height: 120px;
}

.page-hero {
  min-height: 42vh;
}

.footer {
  border-top: 1px solid rgba(241, 238, 232, 0.08);
}

@media (max-width: 1100px) {
  .features {
    border: 0;
    gap: 0.75rem;
  }

  .features article {
    border: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-frame {
    min-height: 420px;
  }
}

.maker-portrait {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(241, 238, 232, 0.09);
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  width: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 238, 232, 0.14);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #11100f;
  color: rgba(241, 238, 232, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.portrait-label {
  margin: 0 0 0.5rem;
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.maker-portrait h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.maker-portrait p:last-child {
  margin-top: 0.65rem;
}

.maker-portrait img {
  width: 112px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(241, 238, 232, 0.14);
}

@media (max-width: 520px) {
  .maker-portrait {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder,
  .maker-portrait img {
    width: 100%;
    max-width: 180px;
  }
}

.social-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.social-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(241, 238, 232, 0.12);
  border-radius: 4px;
  padding: 0 0.9rem;
  background: rgba(255, 255, 255, 0.012);
}

.social-links a:hover {
  border-color: rgba(208, 160, 100, 0.5);
}

@media (max-width: 760px) {
  .social-links {
    justify-content: flex-start;
  }
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 0.45rem;
  border: 1px solid rgba(208, 160, 100, 0.34);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.social-links a:hover .social-icon {
  border-color: rgba(208, 160, 100, 0.72);
  color: #f1eee8;
}

/* Typography refinement */
:root {
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
}

.brand strong,
.hero h1,
.page-hero h1,
.section-intro h2,
.orders h2,
.footer h2,
.hero-card h2,
.features h3,
.product-content h3,
.catalog-embed-placeholder h2,
.story-layout h2,
.contact-grid h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1,
.page-hero h1 {
  line-height: 0.96;
}

.section-intro h2,
.orders h2,
.catalog-embed-placeholder h2,
.story-layout h2 {
  line-height: 1.03;
}

.lead,
.section-intro p,
.orders-text,
.hero-card p,
.features p,
.product-content span,
.form-note,
.footer p,
.contact-grid p {
  font-weight: 400;
  line-height: 1.95;
}

.nav a,
.button,
.quote-form button,
.footer-links a {
  font-weight: 600;
}

.eyebrow,
.portrait-label,
.feature-icon,
.product-content p,
.brand small {
  font-weight: 700;
}

/* Hero image and Instagram embed */
.hero {
  overflow: hidden;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.78) 42%, rgba(8, 8, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.16), rgba(8, 8, 7, 0.82));
}

.hero-text,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(8, 8, 7, 0.52);
  backdrop-filter: blur(10px);
}

.forge-section {
  border-top: 1px solid rgba(241, 238, 232, 0.08);
  border-bottom: 1px solid rgba(241, 238, 232, 0.08);
}

.instagram-frame {
  max-width: 540px;
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid rgba(241, 238, 232, 0.11);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.018);
}

.instagram-frame .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.instagram-frame > blockquote > a {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(241, 238, 232, 0.1);
  background: #0f0e0d;
}

@media (max-width: 760px) {
  .hero-bg,
  .hero-shade {
    border-radius: 0;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.93), rgba(8, 8, 7, 0.72) 52%, rgba(8, 8, 7, 0.92)),
      linear-gradient(90deg, rgba(8, 8, 7, 0.84), rgba(8, 8, 7, 0.42));
  }
}

/* Compact maker card so hero knives stay visible */
.hero .hero-card {
  width: min(100%, 420px);
  justify-self: end;
  align-self: end;
  background: rgba(8, 8, 7, 0.58);
}

.hero .hero-frame {
  min-height: auto;
  padding: 1rem;
}

.hero .hero-meta,
.hero .blade-wrap,
.hero .hero-frame > div:last-child {
  display: none;
}

.hero .maker-portrait {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.hero .maker-portrait img {
  width: 84px;
}

.hero .maker-portrait h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.hero .maker-portrait p:last-child {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (min-width: 1101px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  }
}

@media (max-width: 760px) {
  .hero .hero-card {
    justify-self: start;
    width: 100%;
  }
}

/* Responsive YouTube feature */
.video-feature {
  border: 1px solid rgba(241, 238, 232, 0.11);
  border-radius: 4px;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.018);
}

.video-feature h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.03;
}

.video-feature p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.9;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(241, 238, 232, 0.1);
  border-radius: 4px;
  background: #0d0c0b;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Signature brand wordmark */
.brand-signature {
  display: block;
  width: clamp(108px, 12vw, 148px);
  height: auto;
  margin-top: 0.12rem;
}

.brand:has(.brand-signature) {
  gap: 0.85rem;
}

.brand:has(.brand-signature) .brand-icon {
  display: none;
}

@supports not selector(:has(*)) {
  .brand-signature {
    width: 140px;
  }
}

/* Real signature header refinement */
.brand-signature {
  width: clamp(100px, 10vw, 132px);
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

/* Flatter real signature size */
.brand-signature {
  width: clamp(112px, 11vw, 152px);
  max-height: 34px;
}

/* Fully horizontal signature header */
.brand-signature {
  width: clamp(118px, 11vw, 156px);
  max-height: 30px;
}

/* Compact Instagram embed */
.forge-section .section-intro {
  margin-bottom: 2.25rem;
}

.instagram-frame {
  max-width: 390px;
  padding: 0.55rem;
  margin-left: auto;
  margin-right: auto;
}

.instagram-frame > blockquote > a {
  min-height: 210px;
  padding: 1.25rem;
  font-size: 0.92rem;
}

@media (min-width: 980px) {
  .forge-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }

  .forge-section .section-intro {
    margin-bottom: 0;
  }
}

/* Fix forge section text overlap */
.forge-section .section-intro.split {
  display: block;
  max-width: 720px;
}

.forge-section .section-intro.split > p {
  max-width: 560px;
  margin-top: 1.5rem;
}

@media (min-width: 980px) {
  .forge-section .section-intro.split {
    max-width: 640px;
  }
}

/* Footer signature */
.footer-signature {
  display: block;
  width: clamp(150px, 16vw, 220px);
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.55rem;
}

/* Contact page action links */
.contact-link,
.contact-socials a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1.15rem;
  border: 1px solid rgba(241, 238, 232, 0.12);
  border-radius: 4px;
  padding: 0 0.85rem;
  color: #d8d2ca;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.012);
}

.contact-link:hover,
.contact-socials a:hover {
  color: var(--gold-bright);
  border-color: rgba(208, 160, 100, 0.5);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.contact-socials a {
  margin-top: 1rem;
}

/* Four-card contact layout */
.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1180px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Couple portrait in hero maker card */
.hero .maker-portrait {
  grid-template-columns: 108px minmax(0, 1fr);
}

.hero .maker-portrait img {
  width: 108px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
}

@media (max-width: 520px) {
  .hero .maker-portrait img {
    width: 100%;
    max-width: 180px;
  }
}

/* Netlify Forms honeypot */
.hidden-field {
  display: none !important;
}

/* Footer legal line */
.footer {
  flex-wrap: wrap;
}

.footer-legal {
  flex: 1 0 100%;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(241, 238, 232, 0.08);
  color: #7f786f;
  font-size: 0.82rem;
}

/* Mobile hero reset */
@media (max-width: 760px) {
  .hero.section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
    min-height: auto;
    padding: 5.75rem 1.15rem 3rem;
  }

  .hero-text {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 18vw, 4.25rem);
    line-height: 0.96;
  }

  .hero .lead {
    width: 100%;
    max-width: 30rem;
    margin-top: 1.35rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero .button {
    width: 100%;
    min-height: 46px;
    padding: 0 1rem;
    white-space: normal;
    text-align: center;
  }

  .hero .hero-card {
    width: 100%;
    max-width: none;
    justify-self: auto;
    align-self: auto;
    margin-top: 0.25rem;
  }

  .hero .hero-frame {
    padding: 0.85rem;
  }

  .hero .maker-portrait {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .hero .maker-portrait img {
    width: 96px;
    max-width: none;
  }

  .hero .maker-portrait h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .hero .maker-portrait p:last-child {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 17vw, 3.6rem);
  }

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

  .hero .maker-portrait img {
    width: 100%;
    aspect-ratio: 5 / 4;
  }
}

/* Site-wide responsive polish */
img,
iframe {
  max-width: 100%;
}

@media (max-width: 900px) {
  .section,
  .orders {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
  }

  .brand-signature {
    width: 128px;
    max-height: 30px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(241, 238, 232, 0.1);
    border-radius: 4px;
    padding: 0 0.5rem;
    font-size: 0.82rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.012);
  }

  .page-hero {
    min-height: auto;
    padding-top: 4.75rem;
    padding-bottom: 3rem;
  }

  .page-hero h1,
  .section-intro h2,
  .orders h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
    line-height: 1.02;
    max-width: 100%;
  }

  .lead,
  .section-intro p,
  .orders-text,
  .catalog-embed-placeholder p:last-child,
  .story-layout > p,
  .video-feature p:not(.eyebrow),
  .contact-grid p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.72;
  }

  .split,
  .story-layout,
  .orders-inner,
  .contact-grid,
  .product-grid,
  .gallery-grid,
  .quick-grid,
  .features {
    grid-template-columns: 1fr !important;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .quote-form .full,
  .quote-form button,
  .form-note {
    grid-column: auto !important;
  }

  .features {
    gap: 0.75rem;
    border: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .features article {
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide {
    min-height: 240px;
  }

  .product-image {
    min-height: 230px;
  }

  .quote-form {
    grid-template-columns: 1fr !important;
    padding: 1rem;
    gap: 1rem;
  }

  .quote-form input,
  .quote-form textarea,
  .quote-form select {
    font-size: 16px;
  }

  .catalog-embed-placeholder,
  .video-feature {
    min-height: auto;
    padding: 1.15rem;
  }

  .video-embed {
    margin-top: 1.25rem;
  }

  .forge-section {
    display: block !important;
  }

  .instagram-frame {
    width: 100%;
    max-width: 360px;
    margin-top: 1.5rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.25rem;
  }

  .footer-signature {
    width: 170px;
    max-height: 40px;
  }

  .social-links,
  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }

  .social-links a,
  .contact-socials a,
  .contact-link {
    width: auto;
  }
}

@media (max-width: 520px) {
  .section,
  .orders {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .nav a {
    font-size: 0.8rem;
  }

  .hero.section {
    padding-top: 4.5rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.65rem, 15vw, 3.8rem);
    line-height: 1;
  }

  .hero .lead {
    max-width: none;
    line-height: 1.68;
  }

  .hero .maker-portrait {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .hero .maker-portrait img {
    width: 88px;
    aspect-ratio: 4 / 5;
  }

  .hero .maker-portrait h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .hero .maker-portrait p:last-child {
    font-size: 0.88rem;
  }

  .page-hero h1,
  .section-intro h2,
  .orders h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .button,
  .quote-form button {
    width: 100%;
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }

  .contact-socials,
  .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .social-links a,
  .contact-socials a {
    justify-content: center;
    width: 100%;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .footer-legal {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .hero .maker-portrait {
    grid-template-columns: 1fr;
  }

  .hero .maker-portrait img {
    width: 100%;
    max-width: none;
    aspect-ratio: 5 / 4;
  }

  .contact-socials,
  .social-links {
    grid-template-columns: 1fr;
  }
}

/* Mobile overflow hardening */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site,
.header,
.nav,
.section,
.hero,
.hero-text,
.page-hero,
.orders,
.orders-inner,
.quote-form,
.contact-grid,
.product-grid,
.gallery-grid,
.quick-grid,
.features,
.footer {
  min-width: 0;
}

.hero h1,
.page-hero h1,
.section-intro h2,
.orders h2,
.catalog-embed-placeholder h2,
.story-layout h2,
.video-feature h2,
.contact-grid h3,
.features h3,
.product-content h3,
.lead,
.section-intro p,
.orders-text,
.contact-grid p,
.product-content span {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 760px) {
  .section,
  .orders,
  .page-hero,
  .hero.section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero h1,
  .page-hero h1,
  .section-intro h2,
  .orders h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3.2rem);
    line-height: 1.04;
  }

  .hero h1 {
    max-width: 8.8ch;
  }

  .page-hero h1,
  .orders h2 {
    max-width: 9.5ch;
  }

  .lead,
  .hero .lead,
  .page-hero .lead,
  .section-intro p,
  .orders-text {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .nav,
  .actions,
  .hero .actions {
    max-width: 100%;
  }

  .button,
  .hero .button,
  .quote-form button {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .header {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .section,
  .orders,
  .hero.section {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .hero h1,
  .page-hero h1,
  .section-intro h2,
  .orders h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    font-size: clamp(2.15rem, 11vw, 2.95rem);
  }

  .nav a {
    font-size: 0.78rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}

/* Viewport-bound mobile text widths */
@media (max-width: 760px) {
  .hero-text,
  .page-hero,
  .section-intro,
  .orders-inner > div,
  .story-layout > div,
  .story-layout > p,
  .catalog-embed-placeholder,
  .video-feature,
  .quote-form,
  .contact-grid article,
  .product-card,
  .features article,
  .gallery-item,
  .quick-grid a {
    width: 100%;
    max-width: calc(100vw - 2rem) !important;
  }

  .lead,
  .hero .lead,
  .page-hero .lead,
  .section-intro p,
  .orders-text,
  .hero-card p,
  .features p,
  .product-content span,
  .form-note,
  .footer p,
  .contact-grid p,
  .catalog-embed-placeholder p,
  .video-feature p {
    max-width: calc(100vw - 2rem) !important;
  }

  .hero h1,
  .page-hero h1,
  .section-intro h2,
  .orders h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2,
  .contact-grid h3,
  .features h3,
  .product-content h3 {
    max-width: calc(100vw - 2rem) !important;
  }

  .hero h1 {
    max-width: min(8.8ch, calc(100vw - 2rem)) !important;
  }

  .hero-bg,
  .hero-shade {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Final mobile hero text clamp */
@media (max-width: 760px) {
  .hero-text {
    display: block !important;
    box-sizing: border-box;
    max-width: calc(100vw - 2rem) !important;
  }

  .hero .lead {
    display: block;
    box-sizing: border-box;
    max-width: 22rem !important;
    font-size: 0.94rem;
    line-height: 1.62;
  }
}

@media (max-width: 430px) {
  .hero .lead {
    max-width: calc(100vw - 2rem) !important;
    font-size: 0.92rem;
  }
}

/* Mobile internal page title wrapping */
@media (max-width: 760px) {
  .page-hero h1,
  .orders h2,
  .section-intro h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    max-width: min(8.5ch, calc(100vw - 2rem)) !important;
  }

  .contact-grid h3,
  .features h3,
  .product-content h3 {
    max-width: 100% !important;
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.08;
  }
}

/* Mobile paragraph readable width */
@media (max-width: 760px) {
  .page-hero .lead,
  .orders-text,
  .section-intro p,
  .story-layout > p,
  .video-feature p:not(.eyebrow),
  .catalog-embed-placeholder p,
  .contact-grid p,
  .features p,
  .product-content span {
    max-width: min(20rem, calc(100vw - 2rem)) !important;
  }
}

/* Mobile inner-page text clamp */
@media (max-width: 760px) {
  .page-hero .lead,
  .orders-text,
  .section-intro > p,
  .catalog-embed-placeholder p,
  .video-feature p:not(.eyebrow),
  .story-layout > p,
  .contact-card p,
  .form-note,
  .thanks-copy {
    width: 100% !important;
    max-width: min(20rem, calc(100vw - 2rem)) !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .page-hero .lead,
  .orders-text,
  .section-intro > p,
  .catalog-embed-placeholder p,
  .video-feature p:not(.eyebrow),
  .story-layout > p,
  .contact-card p,
  .form-note,
  .thanks-copy {
    max-width: min(18.5rem, calc(100vw - 2rem)) !important;
  }
}

/* Mobile heading refinement: avoid breaking words */
@media (max-width: 760px) {
  .page-hero h1,
  .orders h2,
  .section-intro h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    max-width: calc(100vw - 4rem) !important;
    font-size: clamp(2.55rem, 10vw, 3.45rem) !important;
    line-height: 1.03 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 430px) {
  .page-hero h1,
  .orders h2,
  .section-intro h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    max-width: calc(100vw - 4rem) !important;
    font-size: clamp(2.45rem, 11vw, 3.2rem) !important;
  }
}

/* Mobile heading refinement v2: balanced width without overflow */
@media (max-width: 760px) {
  .page-hero h1,
  .orders h2,
  .section-intro h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    display: block !important;
    width: 100% !important;
    max-width: min(21rem, calc(100vw - 4rem)) !important;
    font-size: clamp(2.15rem, 9vw, 2.9rem) !important;
    line-height: 1.06 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 430px) {
  .page-hero h1,
  .orders h2,
  .section-intro h2,
  .catalog-embed-placeholder h2,
  .story-layout h2,
  .video-feature h2 {
    max-width: calc(100vw - 4rem) !important;
    font-size: clamp(2.05rem, 9.4vw, 2.45rem) !important;
  }
}

/* Mobile home hero title polish */
@media (max-width: 430px) {
  .hero h1 {
    max-width: min(9.7ch, calc(100vw - 2rem)) !important;
    font-size: clamp(2.55rem, 13.7vw, 3.45rem) !important;
    line-height: 1.05 !important;
  }
}

/* Mobile home hero title punctuation fix */
@media (max-width: 430px) {
  .hero h1 {
    max-width: min(11.5ch, calc(100vw - 2rem)) !important;
    font-size: clamp(2.45rem, 13.2vw, 3.25rem) !important;
  }
}

/* Mobile/tablet home hero title punctuation fix */
@media (max-width: 760px) {
  .hero h1 {
    max-width: min(11.5ch, calc(100vw - 2rem)) !important;
    font-size: clamp(2.45rem, 13.2vw, 3.25rem) !important;
    line-height: 1.05 !important;
  }
}
