/* Contact page — scroll reveal: data-cs-scroll-reveal + theme.css + components/js/animation.js */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Shared gold rule utility */
.ct-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--theme-accent);
  opacity: 0.65;
  margin: 0 auto 20px;
}

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.ct-hero {
  background: var(--theme-surface-card);
  padding: 168px 7vw 88px;
  text-align: center;
  scroll-margin-top: 100px;
  transition:
    background-color 0.55s ease,
    box-shadow 0.55s ease;
}

.ct-hero:target {
  background-color: #F2EDE3;
}

.ct-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin: 0 0 22px;
}

.ct-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.08;
  color: var(--theme-secondary);
  margin: 0;
}

.ct-hero-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--theme-primary);
  margin-top: 6px;
}

.ct-hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(42, 33, 24, 0.72);
  max-width: 540px;
  margin: 26px auto 0;
}

.ct-hero-authenticity {
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition:
    max-height 0.55s ease,
    opacity 0.45s ease,
    margin 0.45s ease,
    padding 0.45s ease,
    border-color 0.45s ease;
}

.ct-hero:target .ct-hero-authenticity {
  margin-top: 40px;
  padding-top: 32px;
  max-height: 160px;
  opacity: 1;
  border-top-color: rgba(184, 148, 90, 0.35);
}

.ct-hero-authenticity h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--theme-secondary);
  margin: 0 0 10px;
}

.ct-hero-authenticity p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.62;
  color: rgba(42, 33, 24, 0.72);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ct-hero,
  .ct-hero-authenticity {
    transition: none;
  }

  .ct-hero:target .ct-hero-authenticity {
    max-height: none;
    opacity: 1;
    margin-top: 40px;
    padding-top: 32px;
    border-top-color: rgba(184, 148, 90, 0.35);
  }
}

/* ───────────────────────────────────────────
   MAIN LAYOUT — contact details
─────────────────────────────────────────── */
.ct-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 7vw;
  text-align: center;
}

.ct-intro {
  max-width: 560px;
  margin: 0 auto 56px;
}

.ct-block-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin: 0 0 14px;
}

.ct-block-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.18;
  color: var(--theme-secondary);
  margin: 0 0 14px;
}

.ct-block-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.16rem;
  line-height: 1.62;
  color: rgba(42, 33, 24, 0.72);
  margin: 0 0 36px;
}

/* ───────────────────────────────────────────
   CONTACT PANEL
─────────────────────────────────────────── */
.ct-panel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 80px) clamp(30px, 5vw, 64px);
  background: var(--theme-surface-card);
  border: 1px solid rgba(184, 148, 90, 0.32);
}

/* Inset hairline frame for a couture, considered feel */
.ct-panel::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(184, 148, 90, 0.22);
  pointer-events: none;
}

.ct-panel-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 148, 90, 0.45);
  border-radius: 50%;
  color: var(--theme-primary);
}

.ct-panel-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin: 0 0 16px;
}

.ct-email {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 400;
  color: var(--theme-secondary);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(184, 148, 90, 0.55);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.ct-email:hover {
  color: var(--theme-primary);
  border-bottom-color: var(--theme-primary);
}

.ct-panel-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(42, 33, 24, 0.16);
  margin: 32px auto;
}

.ct-panel-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.16rem;
  line-height: 1.65;
  color: rgba(42, 33, 24, 0.64);
  margin: 0;
}

/* ───────────────────────────────────────────
   SUPPORT STRIP
─────────────────────────────────────────── */
.ct-support {
  background: var(--theme-primary);
  padding: clamp(60px, 7vw, 92px) 7vw;
  text-align: center;
}

.ct-support-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.6);
  margin: 0 0 18px;
}

.ct-support-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--theme-bg);
  margin: 0 0 44px;
}

.ct-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(248, 244, 238, 0.16);
  max-width: 920px;
  margin: 0 auto;
}

.ct-support-card {
  background: var(--theme-primary);
  padding: 38px 28px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ct-support-card:hover { background: rgba(0, 0, 0, 0.12); }

.ct-support-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.32rem;
  color: var(--theme-bg);
  margin: 0 0 10px;
}

.ct-support-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(248, 244, 238, 0.7);
  margin: 0;
}

@media (max-width: 880px) {
  .ct-hero { padding: 138px 7vw 70px; }

  .ct-support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .ct-email { font-size: 1.42rem; word-break: break-word; }
}