/* ================================================================
   THUS ESSENTIALS — contact.css
   Ultra-Luxury Concierge & Atelier Styling with Fluid Animations
   ================================================================ */

:root {
  --gold-accent: #8b7355;
  --gold-light: #c4a97d;
  --gold-glow: rgba(139, 115, 85, 0.25);
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 35px 80px rgba(139, 115, 85, 0.18);
}

.contact-page {
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--ink);
}

/* ─────────────────────────────────────────────
   AMBIENT GLOWING ATMOSPHERE
   ─────────────────────────────────────────────*/
.contact-ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.38;
}

.contact-ambient-orb--1 {
  top: 10%;
  left: 2%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.22) 0%, rgba(247, 245, 240, 0) 70%);
  animation: contactOrbFloat1 24s ease-in-out infinite alternate;
}

.contact-ambient-orb--2 {
  bottom: 15%;
  right: 2%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(200, 169, 122, 0.25) 0%, rgba(247, 245, 240, 0) 70%);
  animation: contactOrbFloat2 28s ease-in-out infinite alternate;
}

@keyframes contactOrbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, 80px) scale(1.1); }
  100% { transform: translate(-40px, -30px) scale(0.95); }
}

@keyframes contactOrbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-70px, -60px) scale(1.08); }
  100% { transform: translate(50px, 50px) scale(0.92); }
}

/* ─────────────────────────────────────────────
   KINETIC MARQUEE WATERMARKS
   ─────────────────────────────────────────────*/
.contact-watermark {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}

.contact-watermark--hero {
  top: 10%;
  opacity: 0.038;
}

.contact-watermark--atelier {
  top: 6%;
  opacity: 0.032;
}

.contact-watermark-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  will-change: transform;
  animation: contactWatermarkScroll 50s linear infinite;
}

.contact-watermark-track--reverse {
  animation: contactWatermarkScrollRev 58s linear infinite;
}

.contact-watermark-track .ph-star {
  font-size: 0.45em;
  opacity: 0.6;
  animation: contactStarSpin 8s linear infinite;
  display: inline-block;
}

@keyframes contactWatermarkScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes contactWatermarkScrollRev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes contactStarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────────
   HERO: CLIENT CONCIERGE
   ─────────────────────────────────────────────*/
.contact-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(52, 199, 89, 0.3);
  border-radius: 100px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(52, 199, 89, 0.12);
  animation: ph-badge-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.6);
  animation: contactGreenPulse 2.4s infinite;
}

@keyframes contactGreenPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.contact-hero__badge-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-hero__title {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.8rem;
  animation: ph-word-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.contact-hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #111111 20%, #8b7355 65%, #c4a97d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  animation: ph-lead-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.contact-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  animation: ph-lead-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.contact-stat-box {
  padding: 1.3rem 1.6rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.contact-stat-box:hover {
  background: #ffffff;
  border-color: var(--gold-accent);
  box-shadow: 0 15px 35px rgba(139, 115, 85, 0.12);
  transform: translateY(-3px);
}

.contact-stat-box strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.contact-stat-box span {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-muted);
  line-height: 1.4;
  display: block;
}

/* 3D Couture Arch Frame Stage */
.contact-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.contact-hero__stage-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero__portrait-arch {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(139, 115, 85, 0.2);
  background: #ede9e1;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s ease;
}

.contact-hero__portrait-arch:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 45px 100px -20px rgba(139, 115, 85, 0.3);
}

.contact-hero__portrait-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero__portrait-arch:hover img {
  transform: scale(1.08);
}

/* Rotating Gold Atelier Seal */
.contact-hero__seal {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(139, 115, 85, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  animation: contactSealSpin 25s linear infinite;
}

.contact-hero__seal svg {
  width: 85%;
  height: 85%;
}

@keyframes contactSealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.contact-hero__seal-center {
  position: absolute;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-accent);
  pointer-events: none;
}

.contact-hero__floating-chip {
  position: absolute;
  bottom: 1.8rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1.25rem 1.6rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  max-width: 270px;
  z-index: 3;
  animation: contactFloat 6.5s ease-in-out infinite;
}

@keyframes contactFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-1deg); }
}

.contact-hero__floating-chip p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.contact-hero__floating-chip span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

/* ─────────────────────────────────────────────
   CONCIERGE & INQUIRY SUITE SECTION
   ─────────────────────────────────────────────*/
.contact-suite {
  position: relative;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-suite__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3.5rem, 7vw, 7.5rem);
  align-items: start;
}

.contact-channels__kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.8rem;
}

.contact-channels__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.contact-channels__copy {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.channel-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.8rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-card:hover {
  background: #ffffff;
  border-color: var(--gold-accent);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.14);
  transform: translateX(8px);
}

.channel-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.channel-card:hover .channel-card__icon {
  background: var(--ink);
  color: #ffffff;
  transform: scale(1.1);
}

.channel-card__icon svg {
  width: 22px;
  height: 22px;
}

.channel-card__info h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}

.channel-card__info p {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
}

/* FAQ Accordions */
.contact-faqs {
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}

.contact-faqs__title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 1.1rem 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--ink);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-accent);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  opacity: 1;
  padding-top: 0.85rem;
}

.faq-answer p {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   3D INQUIRY FORM CARD
   ─────────────────────────────────────────────*/
.inquiry-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 3.8rem);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inquiry-card__header {
  margin-bottom: 2rem;
}

.inquiry-card__title {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.inquiry-card__sub {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 300;
}

/* Topic selector pills */
.inquiry-topics {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.topic-chip {
  padding: 0.55rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.topic-chip.active,
.topic-chip:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.15);
}

.topic-chip.active {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.3);
}

/* Form inputs */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.15rem 2.6rem;
  background: var(--ink);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.18);
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(139, 115, 85, 0.35);
}

.form-submit-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.35s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(5px);
}

/* ─────────────────────────────────────────────
   FLAGSHIP ATELIER SHOWCASE STAGE
   ─────────────────────────────────────────────*/
.atelier-stage {
  position: relative;
  background: var(--bg);
}

.atelier-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  box-shadow: var(--card-shadow);
}

.atelier-card__info {
  padding: clamp(2.5rem, 6vw, 4.8rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.atelier-card__kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.8rem;
}

.atelier-card__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.atelier-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin: 2.2rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.atelier-meta-item h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.atelier-meta-item p {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.5;
}

.atelier-card__visual {
  position: relative;
  background: #ede9e1;
  overflow: hidden;
}

.atelier-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.atelier-card:hover .atelier-card__visual img {
  transform: scale(1.06);
}

/* ─────────────────────────────────────────────
   PURE CSS ENTRANCE KEYFRAMES (FAILSAFE VISIBILITY)
   ─────────────────────────────────────────────*/
@keyframes ph-badge-in {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ph-word-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ph-lead-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE DESIGN
   ─────────────────────────────────────────────*/
@media (max-width: 992px) {
  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-hero__visual {
    order: -1;
  }
  .contact-hero__floating-chip {
    left: 0;
    bottom: 1rem;
  }
  .contact-suite__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .atelier-card {
    grid-template-columns: 1fr;
  }
  .atelier-card__visual {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-hero__stats {
    grid-template-columns: 1fr;
  }
  .atelier-card__meta {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .form-submit-btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   FLAGSHIP ATELIER MAP SHOWCASE STAGE
   ─────────────────────────────────────────────*/
.atelier-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.atelier-details-pane {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atelier-details-pane:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(139, 115, 85, 0.12);
}

.atelier-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.atelier-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
  animation: atelierPulse 2s infinite;
}

@keyframes atelierPulse {
  0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.atelier-live-text {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b7355;
}

.atelier-title-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}

.atelier-title-heading em {
  font-style: italic;
  font-weight: 400;
}

.atelier-desc-text {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
}

.atelier-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #f0ece1;
  border-bottom: 1px solid #f0ece1;
  margin-bottom: 32px;
}

.atelier-meta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.atelier-meta-label h4 {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
  font-weight: 600;
}

.atelier-meta-val {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.atelier-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.atelier-btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.atelier-btn-directions:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.atelier-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
}

.atelier-btn-call:hover {
  background: #111;
  color: #fff;
}

.atelier-map-pane {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e4dc;
  min-height: 480px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  background: #f6f3ec;
}

.atelier-map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
}

.atelier-map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 2;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.04em;
}

.atelier-map-pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

@media (max-width: 900px) {
  .atelier-map-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .atelier-map-pane {
    min-height: 380px;
  }
  .atelier-map-iframe {
    min-height: 380px;
  }
}

