/* Contact & Thank You Pages Style */
.contact-page, .thank-you-page {
  --ct-white: #ffffff;
  --ct-paper: #fbf9f5;
  --ct-paper-2: #f5f1e8;
  --ct-ink: #1a1712;
  --ct-muted: #7a7468;
  --ct-line: #e6e0d4;
  --ct-line-2: #d8d0bf;
  --ct-gold: #a8842f;
  --ct-gold-2: #c9a85c;
  --ct-gold-soft: #f3ead3;
  --ct-serif: 'Cormorant Garamond', Georgia, serif;
  --ct-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ct-max: 1240px;
  --ct-gutter: clamp(20px, 4vw, 60px);

  font-family: var(--ct-sans);
  color: var(--ct-ink);
  background: var(--ct-white);
  line-height: 1.65;
  font-size: 16px;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.contact-page *, .thank-you-page * {
  box-sizing: border-box;
}

.ct-wrap {
  max-width: var(--ct-max);
  margin: 0 auto;
  padding: 0 var(--ct-gutter);
  width: 100%;
}

.ct-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ct-gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.ct-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ct-gold);
}

.ct-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-page h1, .thank-you-page h1,
.contact-page h2, .thank-you-page h2,
.contact-page h3, .thank-you-page h3 {
  font-family: var(--ct-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ct-ink);
  margin-top: 0;
}

.contact-page h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.contact-page h1 em, .thank-you-page h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ct-gold);
}

.ct-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ct-muted);
  margin-bottom: 36px;
}

/* Contact Hero & Layout */
.ct-hero {
  background: var(--ct-paper);
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--ct-line);
}

.ct-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

/* Contact Form Box */
.ct-form-card {
  background: var(--ct-white);
  border: 1px solid var(--ct-line);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 54px);
  box-shadow: 0 16px 40px rgba(26, 23, 18, 0.04);
}

.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field-full {
  grid-column: 1 / -1;
}

.ct-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ct-ink);
  margin-bottom: 8px;
}
.ct-field label span {
  color: var(--ct-gold);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ct-line-2);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  background: var(--ct-paper);
  color: var(--ct-ink);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--ct-gold);
  background: var(--ct-white);
}

.ct-form-help {
  font-size: 12px;
  color: var(--ct-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  text-decoration: none;
}

.ct-btn-solid {
  background: var(--ct-gold);
  color: var(--ct-white);
  border-color: var(--ct-gold);
}
.ct-btn-solid:hover {
  background: var(--ct-gold-2);
  border-color: var(--ct-gold-2);
}

.ct-btn-line {
  border-color: var(--ct-line-2);
  color: var(--ct-ink);
  background: transparent;
}
.ct-btn-line:hover {
  border-color: var(--ct-gold);
  color: var(--ct-gold);
}

/* Contact Info Sidebar */
.ct-info-card {
  background: var(--ct-paper);
  border: 1px solid var(--ct-line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 40px);
}

.ct-info-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ct-line);
}
.ct-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ct-info-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ct-info-item p {
  font-size: 14px;
  color: var(--ct-muted);
  margin: 0;
  line-height: 1.6;
}

.ct-info-item a {
  color: var(--ct-gold);
  text-decoration: none;
  font-weight: 500;
}
.ct-info-item a:hover {
  text-decoration: underline;
}

/* Fast Perks */
.ct-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.ct-perks li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--ct-ink);
}
.ct-perks li::before {
  content: "✦";
  color: var(--ct-gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* Thank You Page Styling */
.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 10vw, 120px) var(--ct-gutter);
  background: var(--ct-paper);
  text-align: center;
}

.ty-box {
  max-width: 680px;
  background: var(--ct-white);
  border: 1px solid var(--ct-line);
  border-radius: 8px;
  padding: clamp(40px, 6vw, 68px);
  box-shadow: 0 16px 40px rgba(26, 23, 18, 0.04);
}

.ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--ct-gold);
  display: grid;
  place-items: center;
  color: var(--ct-gold);
  font-size: 26px;
  margin: 0 auto 24px;
  background: var(--ct-gold-soft);
}

.thank-you-page h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 16px;
}

.ty-desc {
  font-size: 16px;
  color: var(--ct-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ty-steps-box {
  background: var(--ct-paper);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 36px;
  text-align: left;
}
.ty-steps-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ct-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.ty-steps-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ct-ink);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .ct-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ct-form-grid {
    grid-template-columns: 1fr;
  }
}
