[hidden] { display: none !important; }

/* ============ HERO ============ */
.ct-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
}
.ct-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ct-hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,10,8,.62) 0%, rgba(11,10,8,.3) 42%, rgba(11,10,8,.82) 100%);
}
.ct-hero__content { position: relative; z-index: 2; padding: 200px 56px 60px; width: 100%; box-sizing: border-box; }
.ct-hero__inner { max-width: 1240px; margin: 0 auto; }
.ct-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .28em;
  color: #EFE9DE;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 1px 10px rgba(11,10,8,.85);
}
.ct-hero__breadcrumb a { color: #EFE9DE; text-decoration: none; transition: color .2s; }
.ct-hero__breadcrumb a:hover { color: #E9C87F; }
.ct-hero__breadcrumb-current { color: #E9C87F; }
.ct-hero__eyebrow {
  font-size: 11px;
  letter-spacing: .34em;
  color: #F0CE87;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(11,10,8,.85);
}
.ct-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.05;
  margin: 18px 0 20px;
  text-wrap: balance;
  max-width: 900px;
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(11,10,8,.5);
}
.ct-hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #F0EAE0;
  max-width: 600px;
  margin: 0;
  text-shadow: 0 1px 14px rgba(11,10,8,.6);
}

/* ============ CONTACT BAR ============ */
.ct-bar { background: #F7F2E8; color: #1A1512; border-bottom: 1px solid rgba(26,21,18,.1); }
.ct-bar__inner {
  max-width: 1352px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: stretch;
}
.ct-bar__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 40px;
  text-decoration: none;
  color: #1A1512;
  border-right: 1px solid rgba(26,21,18,.1);
  transition: color .2s;
  min-width: 0;
}
.ct-bar__item > div { min-width: 0; }
.ct-bar__item:nth-child(2) { padding: 34px; gap: 16px; }
.ct-bar__item--last { border-right: none; padding: 34px; gap: 16px; }
.ct-bar__item:hover { color: #9C7B3E; }
.ct-bar__icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(156,123,62,.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.ct-bar__icon-sm { flex: none; }
.ct-bar__label { font-size: 10px; letter-spacing: .28em; color: #9C7B3E; text-transform: uppercase; font-weight: 600; margin-bottom: 7px; }
.ct-bar__value { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; letter-spacing: .01em; overflow-wrap: break-word; }
.ct-bar__value--sm { font-family: var(--sans); font-size: 15px; font-weight: 400; letter-spacing: normal; }
.ct-bar__value--md { font-family: var(--sans); font-size: 16px; font-weight: 400; letter-spacing: .03em; }
.ct-bar__note { font-size: 12px; font-weight: 300; color: #7A7266; margin-top: 8px; letter-spacing: .05em; }

/* ============ FORM + ASIDE ============ */
.ct-main { padding: 104px 56px 116px; background: #F2ECE1; color: #1A1512; }
.ct-main__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 90px;
  align-items: start;
}

.ct-form__eyebrow { font-size: 11px; letter-spacing: .34em; color: #9C7B3E; text-transform: uppercase; font-weight: 600; }
.ct-form__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.14;
  margin: 16px 0 12px;
  text-wrap: balance;
  color: #1A1512;
}
.ct-form__desc { font-size: 15.5px; font-weight: 300; line-height: 1.75; color: #5C5449; margin: 0 0 44px; max-width: 560px; }

.ct-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.ct-field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.ct-field--full { grid-column: 1 / -1; }
.ct-label { font-size: 10.5px; letter-spacing: .24em; color: #7A7266; text-transform: uppercase; }
.ct-label--accent { color: #9C7B3E; }
.ct-label__optional { color: #A39A8C; text-transform: none; letter-spacing: 0; }

.ct-input, .ct-select, .ct-textarea {
  background: #FFFFFF;
  border: 1px solid rgba(26,21,18,.18);
  color: #1A1512;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  padding: 15px 16px;
  transition: border-color .25s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.ct-input::placeholder, .ct-textarea::placeholder { color: #A39A8C; }
.ct-input:focus, .ct-select:focus, .ct-textarea:focus { border-color: #9C7B3E; }
.ct-select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C7B3E' stroke-width='1.4' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 36px; }
.ct-select option { background: #FFFFFF; color: #1A1512; }
.ct-textarea { line-height: 1.7; resize: vertical; }

.ct-checkbox-row { display: flex; align-items: center; gap: 12px; margin-top: 2px; }
.ct-checkbox { width: 17px; height: 17px; accent-color: #9C7B3E; cursor: pointer; }
.ct-checkbox-label { font-size: 14px; font-weight: 300; color: #5C5449; cursor: pointer; }

.ct-actions { display: flex; align-items: center; gap: 30px; margin-top: 20px; flex-wrap: wrap; }
.ct-submit {
  background: #1A1512;
  color: #F3EEE3;
  border: none;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .24em;
  font-weight: 500;
  padding: 18px 42px;
  cursor: pointer;
  transition: filter .3s;
}
.ct-submit:hover { filter: brightness(1.12); }
.ct-error { font-size: 13.5px; font-weight: 300; color: #A8452B; letter-spacing: .02em; }

/* ============ SUCCESS STATE ============ */
.ct-success {
  border: 1px solid rgba(156,123,62,.4);
  background: linear-gradient(160deg, rgba(156,123,62,.1) 0%, rgba(242,236,225,0) 70%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.ct-success__icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(156,123,62,.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ct-success__title { font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.15; color: #1A1512; }
.ct-success__text { font-size: 15.5px; font-weight: 300; line-height: 1.75; color: #5C5449; margin: 0; max-width: 460px; }
.ct-success__email { color: #1A1512; font-weight: 400; }
.ct-success__link { color: #9C7B3E; text-decoration: none; border-bottom: 1px solid rgba(156,123,62,.4); }
.ct-success__reset {
  margin-top: 8px;
  background: none;
  border: 1px solid rgba(156,123,62,.55);
  color: #9C7B3E;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  padding: 14px 30px;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.ct-success__reset:hover { background: #9C7B3E; color: #F7F2E8; }

/* ============ ASIDE ============ */
.ct-aside { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(26,21,18,.14); }
.ct-aside__item { padding: 32px 0; border-bottom: 1px solid rgba(26,21,18,.14); }
.ct-aside__item--last { border-bottom: none; }
.ct-aside__label { font-size: 10.5px; letter-spacing: .3em; color: #9C7B3E; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.ct-aside__value { font-size: 16px; font-weight: 300; line-height: 1.7; color: #3C352E; }
.ct-aside__value--sm { font-size: 15px; line-height: 1.8; color: #5C5449; }
.ct-aside__link { text-decoration: none; transition: color .2s; }
.ct-aside__link:hover { color: #9C7B3E; }
.ct-aside__cta-text { font-size: 15px; font-weight: 300; line-height: 1.75; color: #5C5449; margin: 0 0 22px; }
.ct-aside__cta-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .24em;
  color: #1A1512;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(26,21,18,.4);
  padding: 15px 30px;
  transition: background .3s, color .3s;
}
.ct-aside__cta-btn:hover { background: #1A1512; color: #F7F2E8; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .ct-main__inner { grid-template-columns: 1fr; gap: 56px; }
  .ct-aside { border-top: none; max-width: 560px; }
}
@media (max-width: 900px) {
  .ct-hero { min-height: 64vh; }
  .ct-hero__content { padding: 150px 40px 50px; }
  .ct-hero__title { font-size: clamp(36px, 7vw, 52px); }
  .ct-bar__inner { grid-template-columns: 1fr; padding: 0 40px; }
  .ct-bar__item { border-right: none; border-bottom: 1px solid rgba(26,21,18,.1); padding: 26px 0 !important; }
  .ct-bar__item--last { border-bottom: none; }
  .ct-main { padding: 72px 40px 80px; }
  .ct-form { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ct-hero__content { padding: 130px 22px 40px; }
  .ct-hero__breadcrumb { font-size: 9.5px; }
  .ct-hero__desc { font-size: 15.5px; }
  .ct-bar__inner { padding: 0 22px; }
  .ct-bar__value { font-size: 32px; }
  .ct-main { padding: 56px 22px 64px; }
  .ct-form__desc { margin-bottom: 32px; }
  .ct-success { padding: 40px 28px; }
  .ct-success__title { font-size: 28px; }
  .ct-actions { gap: 16px; }
}
