:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --light: #f2f0ec;
  --light2: #e8e5df;
  --light3: #d8d4cc;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --mid: #444444;
  --gold: #9a7a2a;
  --gold-light: #b8963e;
  --gold-pale: #c9a84c;
  --text-muted: #777;
  --text-light: #999;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 3rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light2);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.nav-logo img { height: 90px; width: auto; }
.nav-logo-text {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--dark);
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.65rem 1.75rem;
  border: 1px solid var(--dark); color: var(--dark);
  background: transparent; cursor: pointer; text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--dark); color: var(--white); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.18) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 10rem 4rem 8rem;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-pale); }
.hero-desc {
  font-size: 0.8rem; font-weight: 300; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65); line-height: 1.9;
  max-width: 420px; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.5rem; background: var(--gold); color: var(--white);
  border: none; cursor: pointer; text-decoration: none; font-weight: 600;
  transition: background 0.3s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  border-bottom: 1px solid var(--light3); padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost-light {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost-light:hover { color: var(--gold-pale); border-color: var(--gold-pale); }

.hero-stats {
  position: absolute; bottom: 3rem; right: 4rem; z-index: 2;
  display: flex; align-items: center; gap: 2.5rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.5rem 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: var(--serif); font-size: 2rem;
  font-weight: 300; color: #fff; line-height: 1;
}
.hero-stat span {
  display: block; font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.3rem;
}
.hero-stat-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.18); }

/* ─── TRUST BAR ─── */
.trust-bar {
  border-top: 1px solid var(--light2); border-bottom: 1px solid var(--light2);
  padding: 1.5rem 3rem;
  display: flex; gap: 3rem; justify-content: center; align-items: center;
  background: var(--off-white); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid);
}
.trust-item svg { color: var(--gold); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.2; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted);
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.9;
}

/* ─── SPACES ─── */
.spaces { padding: 7rem 3rem; background: var(--light); }
.spaces-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--light2); max-width: 1200px; margin: 0 auto;
}
.space-card {
  position: relative; overflow: hidden;
  background: var(--white); aspect-ratio: 3/4; cursor: pointer;
}
.space-card-large { grid-row: span 2; aspect-ratio: auto; }
.space-img {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f0ebe0 0%, #e0d9cc 100%);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s ease; overflow: hidden;
}
.space-img img { width: 100%; height: 100%; object-fit: cover; }
.space-card:hover .space-img { transform: scale(1.04); }
.space-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.55) 0%, transparent 60%);
}
.space-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem 1.5rem; }
.space-tag {
  font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem; display: block;
}
.space-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: #fff; line-height: 1.2; }

/* ─── COLLECTIONS ─── */
.collections { padding: 7rem 3rem; background: var(--white); }
.collections-tabs {
  display: flex; gap: 0; justify-content: center;
  border-bottom: 1px solid var(--light2);
  max-width: 900px; margin: 0 auto 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.75rem 2rem; border: none; background: transparent;
  color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s;
  font-family: var(--sans);
}
.tab-btn.active, .tab-btn:hover { color: var(--dark); border-bottom-color: var(--dark); }

.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; max-width: 1200px; margin: 0 auto;
  background: var(--light2);
}
.product-card {
  background: var(--white); overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s; cursor: pointer;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); z-index: 2; }
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f5f0e8, #ede8da);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 1.5rem; border-bottom: 1px solid var(--light); }
.product-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--dark); margin-bottom: 0.5rem; }
.product-style {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.product-price { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); font-weight: 300; }
.product-price small { font-family: var(--sans); font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.1em; vertical-align: middle; }
.product-card-footer {
  padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  background: var(--off-white);
}
.btn-detail {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark); background: none; border: none; cursor: pointer;
  font-family: var(--sans); padding: 0; transition: color 0.2s;
}
.btn-detail:hover { color: var(--gold); }
.product-tag {
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; background: var(--light); color: var(--mid);
  border: 1px solid var(--light2);
}

/* ─── CUSTOMIZATION ─── */
.customization { padding: 7rem 3rem; background: var(--light); }
.custom-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start; max-width: 1300px; margin: 0 auto;
}
.custom-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.custom-step { display: flex; gap: 1.5rem; }
.step-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--light3); line-height: 1; min-width: 3.5rem;
}
.step-content h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--dark); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.8; }

.color-swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.swatch-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer;
}
.swatch-wrap:hover .swatch { transform: scale(1.06); outline: 2px solid var(--dark); }
.swatch {
  width: 100%; aspect-ratio: 1; border-radius: 2px;
  transition: transform 0.2s, outline 0.2s;
}
.swatch-wrap span {
  font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
}

.custom-visual {
  background: var(--white); border: 1px solid var(--light2); padding: 2.5rem;
  text-align: center; position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.custom-visual-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.1em;
}
.dim-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.dim-table th {
  font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); text-align: left; padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--light2); white-space: nowrap;
}
.dim-table td {
  padding: 0.7rem 0.5rem; color: var(--mid); border-bottom: 1px solid var(--light);
  font-size: 0.72rem; white-space: nowrap;
}
.dim-table td.dim-size { color: var(--dark); font-weight: 500; }
.dim-table tbody tr:hover { background: var(--off-white); }

/* ─── ACCESSORIES ─── */
.accessories-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1300px; margin: 5rem auto 0;
  padding-top: 5rem; border-top: 1px solid var(--light2);
}
.accessories-photo {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.accessories-photo img { width: 100%; height: 100%; object-fit: cover; }
.accessories-title {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  color: var(--dark); margin: 0.75rem 0 1rem; line-height: 1.2;
}
.accessories-subtitle {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem;
}
.accessories-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.accessories-list li { display: flex; align-items: flex-start; gap: 1.25rem; }
.acc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 8px;
}
.acc-icon svg { width: 100%; height: 100%; }
.acc-text strong {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.2rem;
}
.acc-text span { font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; }

/* ─── PLACEMENT ─── */
.placement { padding: 7rem 3rem; background: var(--white); }
.placement-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--light2); max-width: 1200px; margin: 0 auto;
}
.placement-card {
  background: var(--white); padding: 2.5rem 1.75rem; text-align: center;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.placement-card:hover { background: var(--off-white); }
.placement-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--dark);
}
.placement-icon {
  font-size: 2rem; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; height: 60px;
}
.placement-icon svg { width: 48px; height: 48px; stroke: var(--dark); fill: none; stroke-width: 1; }
.placement-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--dark); margin-bottom: 0.75rem; }
.placement-card p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.9; }
.placement-card-models { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.model-pill {
  font-size: 0.55rem; letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem; border: 1px solid var(--light2); color: var(--mid);
}

/* ─── GUARANTEE ─── */
.guarantee { padding: 5rem 3rem; background: var(--dark); }
.guarantee-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
}
.guarantee-item { background: var(--dark); padding: 3rem 2rem; text-align: center; }
.guarantee-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.guarantee-label {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.4rem; display: block;
}
.guarantee-desc { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; line-height: 1.8; }

/* ─── CONTACT ─── */
.contact { padding: 7rem 3rem; background: var(--off-white); }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-form { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--white); border: 1px solid var(--light2);
  color: var(--dark); padding: 0.85rem 1rem;
  font-family: var(--sans); font-size: 0.78rem;
  outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--white); }
.form-submit {
  grid-column: 1 / -1; padding: 1rem 2.5rem;
  background: var(--dark); color: var(--white);
  border: none; cursor: pointer; font-family: var(--sans);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* ─── FILE UPLOAD ─── */
.label-optional { font-size: 0.55rem; color: var(--text-light); text-transform: none; letter-spacing: 0; font-weight: 300; }
.file-upload-zone {
  border: 1.5px dashed var(--light3); background: var(--white);
  border-radius: 2px; padding: 2rem 1.5rem; cursor: pointer;
  transition: border-color 0.2s, background 0.2s; position: relative; text-align: center;
}
.file-upload-zone:hover, .file-upload-zone.drag-over { border-color: var(--gold); background: #fdfbf6; }
.file-input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; z-index: 1;
}
.file-upload-label { font-size: 0.78rem; color: var(--mid); margin: 0 0 0.4rem; }
.file-upload-hint { font-size: 0.6rem; color: var(--text-light); letter-spacing: 0.04em; }
.file-preview { display: none; position: relative; }
.file-preview img { max-height: 220px; max-width: 100%; object-fit: contain; border-radius: 2px; }
.file-remove {
  position: absolute; top: 0.4rem; right: 0.4rem; z-index: 2;
  background: rgba(10,10,10,0.65); color: #fff; border: none;
  padding: 0.3rem 0.6rem; font-size: 0.6rem; cursor: pointer; border-radius: 2px;
  transition: background 0.2s;
}
.file-remove:hover { background: rgba(10,10,10,0.9); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo-wrap { display: flex; align-items: center; margin-bottom: 0.75rem; }
.footer-logo-wrap img { height: 44px; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--white); }
.footer-logo-text span { color: var(--gold); }
.footer-tagline { font-size: 0.68rem; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.7rem;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  background: var(--black); padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}

/* ─── TABLE SILHOUETTE ─── */
.table-silhouette { opacity: 0.15; width: 80%; max-width: 200px; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
  align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border: 1px solid var(--light2);
  max-width: 500px; width: 100%; padding: 3rem; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem;
}
.modal-label {
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.modal-name {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--dark); margin-bottom: 1.5rem;
}
.modal-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; }
.modal-cta {
  display: block; text-align: center; padding: 0.9rem 2rem;
  background: var(--dark); color: var(--white); text-decoration: none;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.modal-cta:hover { background: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero-stats { position: static; flex-wrap: wrap; justify-content: center; margin: 0 1.5rem 2rem; gap: 1.5rem; }
  .spaces-grid { grid-template-columns: 1fr; }
  .space-card-large { grid-row: span 1; aspect-ratio: 3/4; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .placement-cards { grid-template-columns: 1fr 1fr; }
  .custom-grid { grid-template-columns: 1fr; gap: 3rem; }
  .accessories-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .guarantee-inner { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .placement-cards { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
