/* === Salon Optyczny === */
#salon .section-header { margin-bottom: clamp(20px, 2.5vw, 32px); }
#salon .section-header .lede { margin-bottom: 0; }

/* Centered salon header */
.salon-header {
  display: block !important;
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px) !important;
}
.salon-header > div { max-width: 760px; margin: 0 auto; }
.salon-header .eyebrow { justify-content: center; }
.salon-header .section-num { display: block; }
.salon-header h2 { font-size: clamp(36px, 4.6vw, 58px); }
.salon-mgr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--primary-soft);
  margin: 16px 0 0;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .salon-grid { grid-template-columns: 1fr; } }

.salon-feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0;
}
.salon-feats li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.salon-feats li:last-child { border-bottom: none; }
.salon-feats .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary-soft);
  letter-spacing: 0.18em;
  padding-top: 4px;
}
.salon-feats h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 23px;
  margin: 0 0 6px;
  color: #fff;
}
.salon-feats p { font-size: 16px; color: rgba(255,255,255,.72); margin: 0; }

/* Brand row */
.brand-row {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.brand-row-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-soft); font-weight: 600;
}
.brand-row-marks { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
}

/* Materials grid — 3 cards, evenly filled */
.materials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
}
/* Wide card only spans the full row once the grid stacks to 2 columns */
.material-wide { grid-column: auto; }
@media (max-width: 800px) {
  .materials { grid-template-columns: 1fr 1fr; }
  .material-wide { grid-column: 1 / -1; }
}
.material {
  background: var(--blue-grad-btn);
  padding: 28px 24px;
}
.material .key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary-soft);
  letter-spacing: 0.16em;
}
.material h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  margin: 8px 0 4px;
  color: #fff;
}
.material p {
  font-size: 14px; color: rgba(255,255,255,.6);
  margin: 0;
}

/* === Hours / Contact === */
.visit-lede { display: flex; flex-direction: column; gap: 6px; }
.visit-lede > span { display: block; }
.visit-phone {
  color: var(--primary-deep);
  font-weight: 600;
  font-family: var(--font-display);
  white-space: nowrap;
}
.visit-phone:hover { color: var(--primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.hours-card {
  background: #FFF7EE;
  border: 1px solid var(--hairline);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
}
.hours-card h3 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400; margin: 12px 0 32px;
  letter-spacing: -0.01em;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--hairline); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 14px 0;
  font-size: 17px;
  vertical-align: middle;
}
.hours-table td:first-child {
  color: var(--ink-soft);
  text-transform: capitalize;
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.hours-table tr.closed td:last-child { color: var(--muted); }
.hours-table tr.today { background: var(--wash); }
.hours-table tr.today td {
  font-weight: 500;
  color: var(--primary-deep);
  position: relative;
}
.hours-table tr.today td:first-child {
  padding-left: 12px;
  border-left: 2px solid var(--primary);
  color: var(--primary-deep);
}
.hours-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--wash);
  border-radius: 3px;
  font-size: 15px;
  color: var(--primary-deep);
  display: flex; gap: 12px; align-items: flex-start;
}
.hours-note svg { flex-shrink: 0; margin-top: 2px; }

.contact-card {
  background: var(--blue-grad);
  color: #F2F5F9;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute;
  top: -40%; right: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(111,168,214,.25), transparent 60%);
  pointer-events: none;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px); font-weight: 400; margin: 12px 0 0;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 1100px) { .contact-card h3 { white-space: normal; } }
.contact-row {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: start;
}
.contact-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-row dt {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary-soft);
  font-weight: 600;
  margin: 0; padding-top: 4px;
}
.contact-row dd {
  margin: 0;
  font-size: 19px;
  color: #fff;
  line-height: 1.5;
}
.contact-row dd small {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.contact-row dd a:hover { color: var(--primary-soft); }
.phone-big {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
  display: inline-block;
  margin-bottom: 4px;
}

/* Map */
.map-wrap {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 21/9;
  background: var(--wash);
}
/* Taller, easier-to-pan map on phones */
@media (max-width: 600px) { .map-wrap { aspect-ratio: 3/2; } }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === Quote band === */
.quote-band {
  background: var(--paper);
  padding: var(--section-pad) 0;
  position: relative;
}
.quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  font-weight: 300;
  font-style: italic;
  text-wrap: balance;
}
.quote blockquote em { font-style: italic; color: var(--primary-deep); display: block; }
.quote blockquote em + em { margin-top: 6px; }
.quote .quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--primary);
  display: block;
  margin-bottom: 32px;
}
.quote-cite {
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* === Footer === */
.footer {
  background: var(--blue-grad);
  color: rgba(255,255,255,.7);
  padding: var(--section-pad) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo { font-size: 23px; }
.footer-brand .logo-name b { color: #fff; font-size: 22px; }
.footer-brand .logo-name small { font-size: 13px; }
.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  margin: 16px 0 0;
  max-width: 36ch;
}
.footer h5 {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin: 8px 0 20px;
  font-weight: 600;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-list a, .footer-list li { font-size: 20px; color: rgba(255,255,255,.9); transition: color .15s; font-family: var(--font-display); }
.footer-list a { display: inline-block; padding: 6px 0; }
.footer-list a:hover { color: #fff; }
.footer-brands-line { display: flex; flex-direction: column; gap: 10px; }
.footer-brands-line span { font-size: 20px; color: rgba(255,255,255,.9); font-family: var(--font-display); letter-spacing: 0.02em; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px;
  color: rgba(255,255,255,.62);
  flex-wrap: wrap;
  gap: 12px;
}

/* === Section divider — wave === */
.wave-divider {
  display: block;
  width: 100%;
  height: 56px;
  color: var(--paper-soft);
}

/* utility */
.center { text-align: center; }
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
