:root {
  color-scheme: light;
  --ink: #1f1e1c;
  --muted: #7c746e;
  --paper: #fbfaf8;
  --wash: #f2ebe6;
  --surface: #ffffff;
  --line: #ded5cc;
  --gold: #c7a363;
  --gold-soft: #ead8b7;
  --footer: #1b1b1a;
  --shadow: 0 18px 45px rgba(31, 30, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: none;
}

.brand strong,
footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0;
}

.brand strong span,
footer strong span {
  color: var(--gold);
}

.brand small {
  display: none;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
}

.tabs a,
.quote-link,
.button,
label,
.eyebrow,
.stats span {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tabs a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.tabs a:hover {
  color: var(--ink);
}

.quote-link {
  justify-self: end;
  padding: 14px 24px;
  color: white;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 58px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 1.05;
}

h1 span {
  color: var(--gold);
  font-style: italic;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-copy p:not(.eyebrow),
.form-intro p,
.product-body p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

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

.secondary:hover,
.primary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.hero-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--wash);
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(234, 216, 183, 0.35);
}

.hero-image img {
  position: relative;
  display: block;
  width: min(72%, 480px);
  max-height: 72vh;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-image span {
  position: absolute;
  right: clamp(28px, 6vw, 82px);
  bottom: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

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

.stats div {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 130px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.stats span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.section,
.order-section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading .eyebrow,
.form-intro .eyebrow,
.contact-section .eyebrow {
  justify-content: center;
}

.product-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 42px;
}

.category-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.category-tabs a.active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.product-category {
  display: grid;
  gap: 22px;
}

.category-heading {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.category-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.category-heading p,
.gallery-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-heading code {
  color: var(--ink);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92em;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
}

.product-card img,
.custom-visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.custom-card {
  background: var(--wash);
}

.custom-visual {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 35% 35%, rgba(234, 216, 183, 0.9) 0 15%, transparent 16%),
    radial-gradient(circle at 62% 42%, rgba(199, 163, 99, 0.55) 0 18%, transparent 19%),
    radial-gradient(circle at 48% 64%, rgba(234, 216, 183, 0.75) 0 20%, transparent 21%),
    #f4ede8;
}

.custom-visual span {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(251, 250, 248, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 400;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--paper);
}

.product-body .button {
  width: 100%;
  margin-top: 6px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.form-intro {
  max-width: 540px;
  justify-self: end;
  padding-top: 22px;
}

.form-intro .eyebrow {
  justify-content: flex-start;
}

.inquiry-form {
  display: grid;
  width: min(520px, 100%);
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--gold);
  outline-offset: 0;
}

textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.form-status {
  min-height: 24px;
  color: var(--gold);
  font-weight: 800;
}

.form-status-error {
  color: #9a3b2f;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.6fr);
  gap: 32px;
  align-items: start;
}

.contact-section .eyebrow {
  justify-content: flex-start;
}

.contact-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-list a {
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-list a + a {
  border-top: 1px solid var(--line);
}

footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: 32px;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 4vw, 64px);
  color: #d7d0c8;
  background: var(--footer);
}

footer div {
  display: grid;
  gap: 12px;
}

footer strong {
  color: white;
}

footer span {
  color: #9d968f;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .quote-link {
    justify-self: start;
  }

  .hero,
  .order-section,
  .contact-section,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .form-intro {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .field-row,
  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .hero-image img {
    width: 100%;
  }
}
