/* =====================================================
   Restaurant Supply Hub — Inner Pages Stylesheet
   (Products, Inquiry, Wholesale, Blog, About, Contact)
   ===================================================== */

/* ============ PRODUCTS PAGE ============ */
.products-page { padding-bottom: clamp(64px, 8vw, 120px); }

.products-controls {
  padding: 24px 0;
  position: sticky;
  top: 64px;
  z-index: 20;
  background: rgba(246,239,226,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.products-controls__inner {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.products-search {
  flex: 1; min-width: 220px;
  position: relative;
}
.products-search input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.products-search input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(199,91,52,.12);
}
.products-search svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--ash);
  pointer-events: none;
}
.products-count {
  font-size: .85rem; color: var(--ash); font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
}

.category-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 20px 0 8px;
  border-bottom: 1px solid var(--line);
}
.category-pill {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ash-2);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.category-pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.category-pill.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.category-pill__count {
  display: inline-block;
  margin-left: 6px;
  opacity: .55;
  font-weight: 500;
  font-size: .78rem;
}

.category-section {
  padding: clamp(48px, 6vw, 80px) 0 0;
  scroll-margin-top: 140px;
}
.category-section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.category-section__head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  display: flex; align-items: baseline; gap: 18px;
}
.category-section__head h2 .num {
  font-size: .8rem; font-family: var(--sans); color: var(--terracotta);
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.category-section__head p {
  color: var(--ash-2); max-width: 380px; font-size: .98rem;
  margin: 0;
}

.subcategory-block {
  margin-bottom: 48px;
}
.subcategory-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--maroon);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  font-style: italic;
}
.subcategory-title::after {
  content: ''; flex: 1; height: 1px; background: var(--line); display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-card__visual {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease);
}
.product-card__visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35) 0, transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(0,0,0,.08) 0, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s var(--ease);
  mix-blend-mode: multiply;
}
.product-card:hover .product-card__visual img {
  transform: scale(1.06);
}
.product-card__body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; flex-grow: 1;
}
.product-card__sku {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  min-height: 2.6em;
}
.product-card__specs {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 16px;
  font-size: .82rem;
  color: var(--ash);
  flex-grow: 1;
}
.product-card__spec {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.product-card__spec:last-child { border-bottom: 0; }
.product-card__spec b {
  color: var(--ink-soft); font-weight: 600;
  text-transform: uppercase; font-size: .7rem; letter-spacing: .08em;
}

.product-card__actions {
  display: flex; gap: 8px;
  align-items: stretch;
  margin-top: auto;
}
.qty-input {
  width: 64px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
}
.qty-input:focus {
  outline: none; border-color: var(--terracotta);
}
.add-to-inquiry {
  flex: 1;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.add-to-inquiry:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

.products-empty {
  padding: 80px 20px;
  text-align: center;
  color: var(--ash);
}
.products-empty h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
}

/* ============ INQUIRY PAGE ============ */
.inquiry-page { padding-bottom: clamp(64px, 8vw, 120px); }

.inquiry-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-top: clamp(40px, 5vw, 64px);
  align-items: start;
}

.inquiry-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.inquiry-list__head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--paper-2);
}
.inquiry-list__head h2 {
  font-size: 1.4rem;
  margin: 0;
}
.inquiry-list__clear {
  font-size: .82rem;
  color: var(--ash);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color .2s var(--ease);
}
.inquiry-list__clear:hover { color: var(--terracotta-deep); }

.inquiry-row {
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.inquiry-row:last-child { border-bottom: 0; }
.inquiry-row__main { min-width: 0; }
.inquiry-row__sku {
  font-size: .68rem;
  font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2px;
}
.inquiry-row__name {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
}
.inquiry-row__qty input {
  width: 64px;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
  font-weight: 600;
}
.inquiry-row__remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--ash);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.inquiry-row__remove:hover {
  background: var(--terracotta);
  color: var(--paper);
}

.inquiry-empty {
  padding: 64px 28px;
  text-align: center;
  color: var(--ash);
}
.inquiry-empty h3 { font-family: var(--serif); margin-bottom: 8px; color: var(--ink); }
.inquiry-empty p { margin-bottom: 24px; }

.inquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  position: sticky;
  top: 100px;
}
.inquiry-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.inquiry-form > p {
  color: var(--ash-2);
  font-size: .92rem;
  margin-bottom: 24px;
}
.inquiry-form .field { margin-bottom: 16px; }
.inquiry-form .field--row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.inquiry-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s var(--ease), transform .2s var(--ease);
  margin-top: 8px;
}
.inquiry-form__submit:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}
.inquiry-form__submit:disabled {
  background: var(--ash); cursor: not-allowed; transform: none;
}
.inquiry-form__note {
  font-size: .78rem;
  color: var(--ash);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-form { position: static; }
}

/* ============ WHOLESALE PAGE ============ */
.wholesale-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 6vw, 96px) 0;
}
.wholesale-intro__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--forest);
}
.wholesale-intro__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.wholesale-intro h2 { margin-bottom: 24px; }
.wholesale-intro .lede { font-size: 1.1rem; color: var(--ash-2); }

.wholesale-benefits {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 96px) 0;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  padding: 32px 24px;
  border-radius: var(--r-lg);
  background: var(--cream);
  border: 1px solid var(--line);
}
.benefit-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--ash-2);
  font-size: .94rem;
}

.who-buys {
  padding: clamp(48px, 6vw, 96px) 0;
}
.who-buys__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.who-card {
  padding: 28px 22px;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s var(--ease);
}
.who-card:hover { transform: translateY(-4px); }
.who-card__num {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--serif); font-style: italic;
  color: var(--terracotta); opacity: .8;
  font-size: 1.6rem;
}
.who-card h3 {
  color: var(--paper);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.who-card p {
  color: var(--paper);
  opacity: .65;
  font-size: .85rem;
  margin: 0;
}

.wholesale-application {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0;
}
.wholesale-application h2 {
  color: var(--paper);
  margin-bottom: 16px;
}
.wholesale-application > .container > p {
  color: var(--paper);
  opacity: .8;
  max-width: 60ch;
  margin-bottom: 40px;
}
.app-form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-xl);
  max-width: 720px;
}
.app-form .field--row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.app-form .field { margin-bottom: 16px; }
.app-form__submit {
  background: var(--terracotta);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--r);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.app-form__submit:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .wholesale-intro { grid-template-columns: 1fr; }
  .wholesale-intro__visual { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
  .app-form .field--row { grid-template-columns: 1fr; }
  .inquiry-form .field--row { grid-template-columns: 1fr; }
}

/* ============ BLOG PAGE ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: clamp(40px, 5vw, 72px) 0;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.blog-card__cover {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.blog-card__cover svg { width: 100%; height: 100%; }
.blog-card__body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; flex-grow: 1;
}
.blog-card__meta {
  display: flex; gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.blog-card__meta .dot {
  width: 4px; height: 4px; background: var(--ash);
  border-radius: 50%; align-self: center;
}
.blog-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card__excerpt {
  color: var(--ash-2);
  font-size: .94rem;
  margin-bottom: 18px;
  flex-grow: 1;
}
.blog-card__readmore {
  font-size: .85rem;
  color: var(--terracotta);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s var(--ease);
}
.blog-card:hover .blog-card__readmore { gap: 10px; }

.blog-update-note {
  margin: clamp(40px, 5vw, 64px) 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--paper), var(--paper-2));
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--r-lg);
  display: flex; gap: 20px; align-items: center;
}
.blog-update-note svg { flex-shrink: 0; color: var(--terracotta); }
.blog-update-note h3 { font-family: var(--serif); margin-bottom: 4px; font-size: 1.15rem; }
.blog-update-note p { margin: 0; color: var(--ash-2); font-size: .92rem; }

/* ============ BLOG POST ============ */
.post-page {
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 120px);
}
.post-page article {
  max-width: 720px;
  margin: 0 auto;
}
.post-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.post-meta .dot { width: 4px; height: 4px; background: var(--ash); border-radius: 50%; }
.post-page h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.022em;
}
.post-page .lede {
  font-size: 1.2rem;
  color: var(--ash-2);
  margin-bottom: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.post-page article h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 56px 0 18px;
  color: var(--maroon);
}
.post-page article h3 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
}
.post-page article p {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.post-page article ul,
.post-page article ol {
  margin: 8px 0 24px 8px;
  padding-left: 24px;
  list-style: disc;
}
.post-page article ol { list-style: decimal; }
.post-page article li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.post-page article blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--terracotta);
  background: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  border-radius: 0 var(--r) var(--r) 0;
}
.post-cta {
  margin-top: 64px;
  padding: 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
  text-align: center;
}
.post-cta h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.post-cta p {
  color: var(--paper);
  opacity: .75;
  margin-bottom: 22px;
  font-size: .96rem;
}

/* ============ ABOUT PAGE ============ */
.about-story {
  padding: clamp(56px, 7vw, 100px) 0;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-story__visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-story__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-story__visual .sticker {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--paper);
  padding: 12px 20px;
  border-radius: var(--r);
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  box-shadow: var(--shadow);
}
.about-story h2 {
  margin-bottom: 24px;
}
.about-story p {
  font-size: 1.05rem;
  color: var(--ash-2);
  line-height: 1.7;
  margin-bottom: 18px;
}

.values-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0;
}
.values-section h2 {
  color: var(--paper);
  text-align: center;
  margin-bottom: 56px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.value-card {
  text-align: center;
}
.value-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.value-card h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--paper);
  opacity: .7;
  font-size: .96rem;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__visual { max-width: 420px; margin: 0 auto; }
}

/* ============ CONTACT PAGE ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 5vw, 72px) 0;
}
.contact-info {
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.contact-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.contact-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.contact-block__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.contact-block__main {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.25;
  color: var(--ink);
}
.contact-block__main a { color: var(--ink); }
.contact-block__main a:hover { color: var(--terracotta); }
.contact-block__sub {
  font-size: .92rem;
  color: var(--ash);
}

.contact-form {
  padding: clamp(28px, 4vw, 44px);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
}
.contact-form h2 {
  color: var(--paper);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--paper);
  opacity: .7;
  font-size: .94rem;
  margin-bottom: 24px;
}
.contact-form .field label {
  color: var(--paper);
  opacity: .8;
}
.contact-form .field input,
.contact-form .field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--paper);
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder {
  color: rgba(251,246,236,.4);
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--butter);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(240,200,121,.15);
}
.contact-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s var(--ease), transform .2s var(--ease);
  margin-top: 8px;
}
.contact-form__submit:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

.contact-map {
  padding-bottom: clamp(64px, 8vw, 120px);
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--r-xl);
  display: block;
}

@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}
