/* ══════════════════════════════════════════════
   contact.css — Luxury Editorial Contact Page
   Matches index + about design language
   ══════════════════════════════════════════════ */

/* ── Page base ── */
body {
  background: #f7f6f3;
  background-attachment: unset;
}

main {
  overflow-x: hidden;
}

/* ── Tokens ── */
:root {
  --ct-dark: #0d0d0d;
  --ct-ivory: #f5f3ee;
  --ct-green: #28a745;
  --ct-green-lo: rgba(40, 167, 69, 0.12);
  --ct-muted: #7a7670;
  --ct-border: rgba(0, 0, 0, 0.07);
  --ct-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Shared label ── */
.ct-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(40, 167, 69, 0.85);
  margin-bottom: 1rem;
}

/* ── Scroll reveal ── */
.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ct-ease), transform 0.85s var(--ct-ease);
}

.reveal.is-visible,
.reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   1. HERO
══════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ct-dark);
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 70% 25%, rgba(40, 167, 69, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 10% 80%, rgba(40, 167, 69, 0.07) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #111510 100%);
  pointer-events: none;
}

.ct-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ct-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ct-hero-orb--1 {
  width: 500px;
  height: 500px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.15) 0%, transparent 70%);
  animation: ctOrbDrift 11s ease-in-out infinite alternate;
}

.ct-hero-orb--2 {
  width: 360px;
  height: 360px;
  bottom: 40px;
  left: -30px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
  animation: ctOrbDrift 8s ease-in-out infinite alternate-reverse;
}

@keyframes ctOrbDrift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(22px, 16px) scale(1.07);
  }
}

.ct-hero-rule {
  position: absolute;
  left: 5%;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(40, 167, 69, 0.4), transparent);
  display: none;
}

@media (min-width: 1100px) {
  .ct-hero-rule {
    display: block;
  }
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 8vh;
  max-width: 780px;
}

.ct-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(40, 167, 69, 0.9);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: ctSlideUp 0.8s var(--ct-ease) 0.2s forwards;
}

.ct-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  font-weight: 300;
  color: #f5f3ee;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: ctSlideUp 0.9s var(--ct-ease) 0.35s forwards;
}

.ct-hero-content h1 em {
  font-style: italic;
  color: #a8d5b5;
  font-weight: 300;
}

.ct-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245, 243, 238, 0.45);
  max-width: 420px;
  line-height: 1.9;
  opacity: 0;
  animation: ctSlideUp 0.9s var(--ct-ease) 0.5s forwards;
}

.ct-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: ctFadeIn 1.2s ease 1.1s forwards;
}

.ct-hero-scroll span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.28);
  writing-mode: vertical-lr;
}

.ct-hero-scroll-bar {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(40, 167, 69, 0.55), transparent);
  animation: ctScrollPulse 2.4s ease-in-out infinite;
}

@keyframes ctScrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes ctSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctFadeIn {
  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════
   2. SUPPORT CATEGORIES
══════════════════════════════════ */
.ct-categories {
  background: var(--ct-ivory);
  padding: 7rem 6% 5rem;
}

.ct-categories-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ct-cat-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 2px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ct-ease), box-shadow 0.4s ease, border-color 0.4s ease;
}

.ct-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ct-green), rgba(40, 167, 69, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ct-ease);
}

.ct-cat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(40, 167, 69, 0.15);
}

.ct-cat-card:hover::before {
  transform: scaleX(1);
}

.ct-cat-icon {
  width: 44px;
  height: 44px;
  background: var(--ct-green-lo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ct-cat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ct-green);
}

.ct-cat-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}

.ct-cat-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ct-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════
   3. MAIN CONTACT SECTION
══════════════════════════════════ */
.ct-main {
  background: #f0ede6;
  padding: 8rem 6%;
}

.ct-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── Info column ── */
.ct-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.ct-info h2 em {
  font-style: italic;
  color: var(--ct-green);
}

.ct-info>p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #5a5850;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* Info list */
.ct-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ct-info-list li:hover {
  border-color: rgba(40, 167, 69, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.ct-info-icon {
  width: 36px;
  height: 36px;
  background: var(--ct-green-lo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-info-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--ct-green);
}

.ct-info-list li>div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ct-info-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa8a0;
}

.ct-info-value {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #1a1a1a;
}

.ct-info-link {
  color: var(--ct-green);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ct-info-link:hover {
  opacity: 0.75;
}

/* Quick contact */
.ct-quick-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa8a0;
  margin-bottom: 0.875rem;
}

.ct-quick-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ct-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.25rem;
  border-radius: 2px;
  transition: transform 0.25s var(--ct-ease), box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ct-quick-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.ct-quick-btn--primary {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #f5f3ee;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.22);
}

.ct-quick-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
  color: #f5f3ee;
}

.ct-quick-btn--ghost {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ct-quick-btn--ghost:hover {
  border-color: rgba(40, 167, 69, 0.35);
  color: var(--ct-green);
  transform: translateY(-2px);
}

/* ── Form column ── */
.ct-form-wrap {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.ct-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}

.ct-form-wrap h2 em {
  font-style: italic;
  color: var(--ct-green);
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ct-field-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa8a0;
}

.ct-field-input {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #1a1a1a;
  background: rgba(247, 246, 243, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.ct-field-input::placeholder {
  color: #c0bdb8;
}

.ct-field-input:focus {
  border-color: rgba(40, 167, 69, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.07);
}

.ct-field-textarea {
  min-height: 140px;
  line-height: 1.7;
}

/* Success message */
.ct-success-msg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(40, 167, 69, 0.07);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #1e6b32;
  animation: ctFadeIn 0.4s ease;
}

.ct-success-msg svg {
  width: 18px;
  height: 18px;
  stroke: var(--ct-green);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Submit button */
.ct-submit {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f3ee;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  border: none;
  border-radius: 2px;
  padding: 1rem 2rem;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.22);
  transition: transform 0.25s var(--ct-ease), box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ct-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.ct-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40, 167, 69, 0.3);
}

.ct-submit:hover::after {
  transform: translateX(100%);
}

/* ══════════════════════════════════
   4. TRUST NOTE
══════════════════════════════════ */
.ct-trust {
  background: var(--ct-ivory);
  padding: 3rem 6% 4rem;
  text-align: center;
}

.ct-trust p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #aaa8a0;
  letter-spacing: 0.04em;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.ct-footer {
  background: #0d0d0d;
  color: rgba(245, 243, 238, 0.28);
  border-top: none;
  padding: 2rem 6%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
  .ct-categories-inner {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .ct-main-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .ct-form-wrap {
    padding: 2.25rem 1.75rem;
  }

  .ct-categories {
    padding: 5rem 5% 4rem;
  }

  .ct-main {
    padding: 5rem 5%;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    min-height: 75vh;
  }

  .ct-hero-content {
    padding: 0 5% 7vh;
  }

  .ct-hero-content h1 {
    font-size: clamp(3.2rem, 10vw, 4rem);
  }

  .ct-quick-btns {
    flex-direction: column;
  }

  .ct-quick-btn {
    justify-content: center;
  }
}