:root {
  color-scheme: light;
  --ink: #241d19;
  --muted: #75685f;
  --paper: #fffaf2;
  --soft: #f2eadf;
  --line: #d9cab9;
  --panel: #ffffff;
  --accent: #7a4b24;
  --accent-dark: #432616;
  --gold: #b9904f;
  --charcoal: #2b2d2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.58 Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(67, 38, 22, 0.18);
  background: rgba(255, 250, 242, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-dark);
  text-decoration: none;
}

.brand img {
  width: 74px;
  height: auto;
  display: block;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small,
.mainNav,
.eyebrow,
figcaption,
.primaryButton,
.secondaryButton {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.mainNav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.mainNav a {
  text-decoration: none;
}

.mainNav a:hover {
  color: var(--accent-dark);
}

.siteLanguageToggle {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 10px;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.siteLanguageToggle:hover {
  background: rgba(122, 75, 36, 0.08);
}

.navAction,
.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 2px;
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}

.navAction,
.primaryButton {
  background: var(--accent);
  color: #fff;
}

.navAction:hover,
.primaryButton:hover {
  background: var(--accent-dark);
}

.secondaryButton {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 84px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 21, 16, 0.86), rgba(29, 21, 16, 0.58) 42%, rgba(29, 21, 16, 0.12) 78%);
}

.heroPanel {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 76px 0 92px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  max-width: 800px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
}

.heroPanel > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
}

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

.letterSection,
.companySection,
.qualityBand,
.materialsSection,
.quietFactory,
.mediaSection,
.toolBand,
.mapSection,
.section {
  padding: 72px clamp(18px, 5vw, 72px);
}

.letterSection {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.letterText {
  display: grid;
  gap: 17px;
}

.letterText p:not(.eyebrow),
.storyGrid p,
.quietFactory p,
.qualityBand p,
.toolBand p,
.contactGrid span {
  color: var(--muted);
}

.letterText p:not(.eyebrow) {
  max-width: 720px;
  font-size: 19px;
}

.featureFur {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.featureFur img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.luxuryStrip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.luxuryStrip img {
  width: 100%;
  height: clamp(260px, 31vw, 460px);
  object-fit: cover;
  display: block;
}

.companySection {
  background: var(--soft);
}

.sectionIntro {
  max-width: 850px;
  margin-bottom: 30px;
}

.sectionLead {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.textButton {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 750;
}

.storyGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.storyGrid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 25px;
  background: rgba(255, 253, 248, 0.92);
}

.storyGrid span {
  color: var(--accent-dark);
  font-size: 26px;
  line-height: 1;
}

.qualityBand {
  background: var(--paper);
}

.materialsSection {
  background: #fbf7ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.materialsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.materialsGrid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 25px;
  background: #fff;
}

.materialsGrid p {
  color: var(--muted);
}

.isoBlock {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.isoBlock img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.isoBlock p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 18px;
}

.quietFactory {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 260px;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbf7ef;
}

.quietFactory p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  font-size: 18px;
}

.quietFactory img {
  width: 260px;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.mediaSection {
  background: var(--charcoal);
  color: #fff;
}

.mediaSection video {
  width: min(980px, 100%);
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
}

.toolBand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--accent-dark);
  color: #fff;
}

.toolBand div {
  max-width: 780px;
}

.toolBand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.mapSection {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mapCopy {
  display: grid;
  align-content: center;
  gap: 14px;
}

address {
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

.mapLink {
  width: fit-content;
  color: var(--accent-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.mapFrame {
  min-height: 360px;
  border: 1px solid var(--line);
  background: #fff;
}

.mapFrame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.adBanner {
  width: min(1180px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.bottomAd {
  min-height: 90px;
}

.contactSection {
  background: var(--soft);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contactGrid div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
  background: #fff;
}

.productHero {
  position: relative;
  min-height: min(680px, calc(100vh - 84px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.productHero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productHero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 14, 12, 0.82), rgba(18, 14, 12, 0.16) 62%);
}

.productHero div {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 clamp(18px, 5vw, 72px) 72px;
  color: #fff;
}

.productHero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.productIntro,
.productFeature,
.productGallery {
  padding: 72px clamp(18px, 5vw, 72px);
}

.productIntro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--paper);
}

.productText {
  display: grid;
  align-content: start;
  gap: 16px;
  color: var(--muted);
  font-size: 18px;
}

.productFeature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.productFeature figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.productFeature img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.productFeature p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.productGallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.productGallery figure {
  margin: 0;
  background: #fff;
}

.productGallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.newsPreview {
  padding: 78px clamp(20px, 6vw, 90px);
  background: #f8f6f2;
}

.newsPreviewGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 24px;
  background: var(--line);
}

.newsPreviewGrid article,
.newsList article {
  background: #fff;
}

.newsPreviewGrid article {
  padding: 28px;
}

.newsPreviewGrid time,
.newsList time {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsPreviewGrid h3,
.newsList h2 {
  margin: 14px 0 10px;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
}

.newsPreviewGrid h3 {
  font-size: 28px;
}

.newsPreviewGrid p,
.newsList p {
  color: var(--muted);
  line-height: 1.75;
}

.newsHero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 620px;
  background: #211a16;
  color: #fff;
}

.newsHero img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.newsHero > div {
  align-self: end;
  padding: 140px clamp(26px, 6vw, 80px) 80px;
}

.newsHero h1 {
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 400;
  line-height: 0.98;
}

.newsHero p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.newsList {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 72px);
}

.newsList article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.newsList article:first-child {
  padding-top: 0;
}

.newsList h2 {
  font-size: clamp(30px, 4vw, 46px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.footerLinks {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.legalHero {
  padding: 150px clamp(20px, 7vw, 90px) 72px;
  background: #f4f0eb;
  border-bottom: 1px solid var(--line);
}

.legalHero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 400;
  line-height: 0.95;
}

.legalHero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legalSection {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px clamp(20px, 5vw, 72px);
}

.legalSection article {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legalSection article:first-child {
  padding-top: 0;
}

.legalSection h2 {
  margin: 0 0 14px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}

.legalSection p,
.legalSection li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legalSection ul {
  margin: 0;
  padding-left: 22px;
}

.legalSection a {
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 920px) {
  .siteHeader {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .mainNav {
    width: 100%;
    flex-wrap: wrap;
  }

  .letterSection,
  .storyGrid,
  .materialsGrid,
  .contactGrid,
  .mapSection,
  .productIntro,
  .productFeature,
  .productGallery,
  .newsPreviewGrid,
  .newsHero,
  .quietFactory {
    grid-template-columns: 1fr;
  }

  .newsHero {
    min-height: 0;
  }

  .newsHero img {
    min-height: 360px;
  }

  .newsHero > div {
    padding-top: 44px;
  }

  .newsList article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .luxuryStrip img {
    height: 290px;
  }

  .quietFactory img {
    width: min(420px, 100%);
    height: auto;
  }

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

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

  .legalHero {
    padding-top: 84px;
  }
}

@media (max-width: 620px) {
  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 62px;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: rgba(29, 21, 16, 0.7);
  }

  .heroPanel {
    margin-left: 18px;
    padding: 54px 0 72px;
  }

  h1 {
    font-size: 40px;
  }

  .heroPanel > p:not(.eyebrow),
  .letterText p:not(.eyebrow) {
    font-size: 18px;
  }

  .featureFur img {
    height: 320px;
  }

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