body {
  font-family: var(--general-font), serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ------------------header-------------------- */

.page-header {
  padding: 56px 8% 48px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--header-font), serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.page-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 12px;
  max-width: 480px;
}

/* ------------------main grid-------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  flex: 1;
}

/* ------------------location-------------------- */
.contact-left {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.map-wrap {
  flex: 1;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

.address-bar {
  padding: 28px 0;
  padding-top: 0px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--warm-white);
}

.address-icon {
  width: 40px;
  height: 40px;
  background: var(--red-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.address-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
}

.address-label {
  font-family: var(--header-font), serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.address-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
}
.address-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 300;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-top: 10px;
  transition: gap 0.2s;
}
.directions-link:hover {
  gap: 10px;
}

/* ------------------contact-------------------- */
.contact-right {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--warm-white);
}

.contact-right-title {
  font-family: var(--header-font), serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-right-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}
.channel-card::after {
  content: "→";
  position: absolute;
  right: 20px;
  font-size: 16px;
  color: var(--muted-light);
  transition: all 0.2s;
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 6px 0px rgba(0, 0, 0, 0.06);
}
.channel-card:hover::after {
  right: 14px;
  color: var(--ink);
}

.channel-card.line-card:hover {
  border-color: #06c755;
}
.channel-card.fb-card:hover {
  border-color: #1877f2;
}

.channel-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  font-weight: 900;
  color: white;
}

.line-logo {
  background: #06c755;
  border-radius: 5px;
}
.fb-logo {
  background: #1877f2;
  border-radius: 5px;
}

.channel-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.channel-handle {
  font-family: var(--accent-font), serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-right {
    padding: 36px 5%;
  }
  .address-bar {
    padding: 24px 5%;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-desktop-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
    align-items: end;
  }
  .page-header {
    padding: 40px 5% 36px;
  }
}

@media (max-width: 640px) {
  footer {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    text-align: center;
  }
  footer > div:nth-child(2) {
    display: none;
  }
  .footer-logo,
  .footer-socials {
    justify-content: center;
  }
  .channel-card {
    padding: 16px;
  }
}
