body.contact-page {
  padding-top: 95px;
  background: #100706;
  color: #fff4e8;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
}

.contact-page h1,
.contact-page h2,
.contact-page h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-page a { text-decoration: none; }

.active-link { color: #ff7a2d !important; }

.contact-hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 7%;
  background-image: url('./assets/story-grill.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 122, 45, .25), transparent 34%),
    linear-gradient(90deg, rgba(7, 1, 1, .92), rgba(18, 6, 4, .78), rgba(18, 6, 4, .35));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  color: #ff8a2a;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
  color: #fff4e8;
  margin-bottom: 20px;
}

.contact-hero p {
  max-width: 610px;
  color: #ead3bf;
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-actions,
.map-content {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-btn,
.secondary-btn,
.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: .3s ease;
}

.primary-btn,
.menu-link {
  background: #ff6b1a;
  color: #fff;
  box-shadow: 0 14px 35px rgba(255, 107, 26, .26);
}

.secondary-btn {
  color: #fff4e8;
  border: 1px solid rgba(255, 244, 232, .55);
  background: rgba(255,255,255,.06);
}

.primary-btn:hover,
.secondary-btn:hover,
.menu-link:hover {
  transform: translateY(-3px);
  background: #ff8a2a;
}

.contact-story-section {
  padding: 100px 7%;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 122, 45, .14), transparent 28%),
    linear-gradient(180deg, #120604, #1f0d07);
}

.contact-story-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.contact-image-stack {
  position: relative;
  min-height: 560px;
}

.contact-img {
  position: absolute;
  width: 78%;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 138, 42, .2);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.main-img {
  left: 0;
  top: 0;
  height: 390px;
}

.small-img {
  right: 0;
  bottom: 0;
  height: 270px;
  width: 58%;
}

.contact-info-panel h2,
.map-content h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  color: #fff4e8;
  margin-bottom: 18px;
}

.intro-text,
.map-content p {
  color: #dfc4ac;
  margin-bottom: 26px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255, 138, 42, .18);
  color: inherit;
  transition: .3s ease;
}

.contact-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 138, 42, .45);
  background: rgba(255,255,255,.1);
}

.static-card:hover { transform: none; }

.contact-card span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff6b1a;
  color: #fff;
  font-weight: 900;
}

.contact-card h3 {
  font-size: 25px;
  margin-bottom: 4px;
  color: #fff4e8;
}

.contact-card p {
  color: #d8bba3;
  margin: 0;
}

.map-section {
  padding: 90px 7%;
  background: #fff4e8;
  color: #281208;
}

.map-section .eyebrow { color: #d85f16; }

.map-content {
  max-width: 1180px;
  margin: 0 auto 35px;
  justify-content: space-between;
}

.map-content h2 { color: #281208; }
.map-content p { color: #6e5543; max-width: 620px; margin-bottom: 0; }

.map-box {
  max-width: 1180px;
  margin: auto;
  height: 470px;
  border-radius: 30px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 25px 70px rgba(40,18,8,.18);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  body.contact-page { padding-top: 75px; }
  .contact-hero { min-height: 70vh; padding: 65px 6%; }
  .contact-story-grid { grid-template-columns: 1fr; gap: 35px; }
  .contact-image-stack { min-height: 430px; }
  .main-img { height: 300px; }
  .small-img { height: 210px; }
  .map-content { align-items: flex-start; }
}

@media (max-width: 600px) {
  .contact-image-stack { min-height: auto; display: grid; gap: 16px; }
  .contact-img { position: static; width: 100%; height: auto; }
  .contact-card { padding: 18px; }
  .map-box { height: 360px; border-width: 6px; border-radius: 20px; }
}
