:root {
  --ink: #231f1b;
  --muted: #766f67;
  --paper: #f7f3ec;
  --surface: #fffdf8;
  --line: #ded5ca;
  --clay: #8e3d30;
  --cobalt: #243f5f;
  --sage: #425247;
  --gold: #b9904c;
  --shadow: 0 28px 80px rgba(35, 31, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  color: var(--surface);
  background: var(--clay);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(247, 243, 236, 0.94);
  border-bottom: 1px solid rgba(222, 213, 202, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 92px;
  height: auto;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--clay);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  min-height: min(760px, calc(100vh - 76px));
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: grid;
  align-content: center;
  max-width: 640px;
  padding: clamp(38px, 5vw, 72px) clamp(22px, 4vw, 58px);
}

.hero-image {
  margin: 0;
  min-height: min(620px, calc(100vh - 112px));
  padding: 18px 18px 18px 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
article,
section {
  margin-top: 0;
  min-width: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: break-word;
}

p,
li,
span,
strong {
  overflow-wrap: break-word;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.2vw, 5.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.6rem);
}

.hero-copy > p:not(.eyebrow),
.statement p,
.contact p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.button.ghost {
  color: var(--ink);
  background: transparent;
}

.statement {
  display: grid;
  place-items: center;
  padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 70px);
  background: var(--surface);
}

.statement p {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.55vw, 2.7rem);
  line-height: 1.16;
  text-align: center;
}

.section {
  padding: clamp(56px, 6.5vw, 96px) clamp(18px, 4vw, 58px);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
}

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

.line-grid article {
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--paper);
}

.line-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.line-grid h2 {
  margin: 18px 0 16px;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
}

.line-grid p,
.catalog-grid span,
.method p {
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
}

.showcase figure {
  margin: 0;
  min-height: 360px;
}

.showcase figure:first-child {
  grid-row: span 2;
}

.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog {
  background: var(--surface);
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-controls button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-controls button.is-active,
.filter-controls button:hover {
  color: var(--surface);
  background: var(--clay);
  border-color: var(--clay);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
}

.catalog-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  background: var(--surface);
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-grid article.is-hidden {
  display: none;
}

.catalog-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.08;
}

.catalog-grid small {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-grid img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.catalog-grid article > div {
  display: grid;
  align-content: space-between;
  min-height: 164px;
  padding: 20px;
}

.catalog-groups {
  display: grid;
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
}

.catalog-family {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  min-height: 360px;
  background: var(--surface);
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-family.is-hidden {
  display: none;
}

.catalog-family img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.catalog-family > div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 56px);
}

.catalog-family small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-family h3 {
  max-width: 560px;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.catalog-family p {
  max-width: 560px;
  color: var(--muted);
}

.catalog-family ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-family li {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 750;
}

.method {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 6vw, 90px);
  background: var(--sage);
  color: var(--surface);
}

.method .eyebrow,
.contact .eyebrow {
  color: #d8b56a;
}

.method ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.22);
}

.method li {
  min-height: 170px;
  padding: 24px;
  background: var(--sage);
}

.method span {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.method p {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 460px);
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(56px, 6.5vw, 96px) clamp(18px, 4vw, 58px);
  color: var(--surface);
  background: var(--ink);
}

.contact p,
.form-note {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--surface);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbf8f1;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(185, 144, 76, 0.32);
  outline-offset: 0;
  border-color: var(--gold);
}

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

.contact-form .button {
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
}

.phone {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
  line-height: 1;
}

@media (min-width: 1280px) {
  .hero,
  .statement,
  .section,
  .contact {
    max-width: 1680px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: 640px;
  }

  .hero-image {
    min-height: 600px;
  }

  h1 {
    font-size: clamp(2.65rem, 4.7vw, 5rem);
  }
}

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

.site-footer {
  display: grid;
  gap: 30px;
  padding: 46px clamp(18px, 4vw, 58px) 24px;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid rgba(222, 213, 202, 0.86);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 126px;
  height: auto;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.footer-brand p,
.footer-grid h2 {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--clay);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.legal-nav {
  margin-left: auto;
}

.legal-page {
  min-height: calc(100vh - 250px);
  padding: clamp(54px, 7vw, 110px) clamp(20px, 5vw, 70px);
}

.legal-page section {
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.02rem;
}

.compact-footer {
  padding-top: 24px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .catalog-head,
  .catalog-family,
  .method,
  .contact,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    order: -1;
    min-height: 440px;
    padding: 18px;
  }

  .hero-copy {
    padding-top: 44px;
  }

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

  .catalog-family img {
    min-height: 300px;
  }

  .showcase figure:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

  .filter-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 8px 16px;
  }

  .brand-logo {
    width: 74px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-image {
    min-height: 270px;
    padding: 12px 12px 0;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 30px 20px 36px;
  }

  .statement p,
  .line-grid article,
  .catalog-family > div,
  .contact > div,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: 2.18rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .statement p {
    font-size: 1.36rem;
    line-height: 1.22;
  }

  .section,
  .statement,
  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .line-grid,
  .showcase,
  .catalog-grid,
  .footer-grid,
  .method ol,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .showcase figure:first-child {
    grid-column: auto;
  }

  .showcase {
    display: none;
  }

  .showcase figure {
    min-height: 220px;
  }

  .line-grid article {
    min-height: 178px;
    padding: 22px 20px;
  }

  .catalog-family {
    min-height: 0;
  }

  .catalog-family img {
    min-height: 220px;
    aspect-ratio: 1.25;
  }

  .catalog-family h3 {
    font-size: 1.65rem;
    line-height: 1.08;
  }

  .catalog-family > div,
  .contact-form {
    padding: 24px 20px;
  }

  .method li {
    min-height: 142px;
    padding: 22px 20px;
  }

  .phone {
    font-size: 1.58rem;
  }
}

@media (max-width: 420px) {
  h1 {
    max-width: 11ch;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy > p:not(.eyebrow),
  .statement p,
  .contact p {
    font-size: 1rem;
  }

  .filter-controls button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .catalog-family li {
    font-size: 0.78rem;
  }

  .footer-logo {
    width: 104px;
  }
}
