:root {
  --ihs-ink: #173d33;
  --ihs-deep: #0d332b;
  --ihs-cream: #f7f3e9;
  --ihs-paper: #fffdf8;
  --ihs-gold: #c8a54f;
  --ihs-gold-dark: #9d7625;
  --ihs-line: rgba(23, 61, 51, .17);
  --ihs-muted: #68766f;
  --ihs-serif: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  --ihs-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ieta-horse-form-page .vehica-page,
.ieta-horse-form-page .vehica-page__content,
.ieta-horse-public-page .vehica-page,
.ieta-horse-public-page .vehica-page__content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ihs-form,
.ihs-auth,
.ihp-listing {
  color: var(--ihs-ink);
  background: var(--ihs-cream);
  font-family: var(--ihs-sans);
  -webkit-font-smoothing: antialiased;
}

.ihs-shell,
.ihp-shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.ihs-kicker,
.ihs-card-label {
  margin: 0;
  color: var(--ihs-gold-dark);
  font: 700 12px/1.35 var(--ihs-sans);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ihs-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 22px;
  font: 700 14px/1 var(--ihs-sans);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ihs-button:hover { transform: translateY(-1px); }
.ihs-button--gold { background: var(--ihs-gold); color: #102f28 !important; }
.ihs-button--gold:hover { background: #d5b660; }
.ihs-button--outline { border-color: var(--ihs-line); background: transparent; color: var(--ihs-ink) !important; }
.ihs-button--outline:hover { border-color: var(--ihs-ink); }

.ihs-auth {
  min-height: 70vh;
  padding: 110px 0 130px;
}

.ihs-auth .ihs-shell { max-width: 780px; }
.ihs-auth h1 {
  max-width: 700px;
  margin: 18px 0;
  color: var(--ihs-ink);
  font: 500 clamp(48px, 7vw, 78px)/.94 var(--ihs-serif);
  letter-spacing: -.035em;
}
.ihs-auth > .ihs-shell > p:not(.ihs-kicker):not(.ihs-auth__privacy) { max-width: 610px; font-size: 18px; line-height: 1.65; }
.ihs-auth__actions { display: flex; gap: 12px; margin-top: 34px; }
.ihs-auth__privacy { display: flex; align-items: center; gap: 8px; margin-top: 26px; color: var(--ihs-muted); font-size: 13px; }

.ihs-form { min-height: 100vh; padding: 70px 0 120px; }
.ihs-form__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}
.ihs-back { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 30px; color: var(--ihs-ink); font: 700 13px/1 var(--ihs-sans); text-decoration: none; }
.ihs-back .dashicons { font-size: 16px; width: 16px; height: 16px; }
.ihs-form h1 {
  max-width: 760px;
  margin: 14px 0 13px;
  color: var(--ihs-ink);
  font: 500 clamp(48px, 6vw, 76px)/.94 var(--ihs-serif);
  letter-spacing: -.04em;
}
.ihs-lead { max-width: 680px; margin: 0; color: #4e625a; font-size: 16px; line-height: 1.65; }
.ihs-save-state { display: grid; grid-template-columns: 32px auto; align-items: center; gap: 2px 12px; min-width: 230px; border-left: 1px solid var(--ihs-line); padding: 12px 0 12px 24px; }
.ihs-save-state .dashicons { grid-row: 1/3; color: var(--ihs-gold-dark); font-size: 25px; width: 25px; height: 25px; }
.ihs-save-state strong { font-size: 14px; }
.ihs-save-state small { color: var(--ihs-muted); font-size: 11px; }
.ihs-save-state.is-saving .dashicons { animation: ihs-spin 1s linear infinite; }
@keyframes ihs-spin { to { transform: rotate(360deg); } }

.ihs-form__grid { display: grid; grid-template-columns: minmax(0, 1fr) 332px; align-items: start; gap: 34px; }
.ihs-dossier { min-width: 0; }
.ihs-section { overflow: hidden; border-top: 1px solid var(--ihs-line); background: rgba(255,255,255,.3); }
.ihs-section:last-of-type { border-bottom: 1px solid var(--ihs-line); }
.ihs-section.is-open { background: var(--ihs-paper); box-shadow: 0 18px 48px rgba(35, 48, 40, .06); }
.ihs-section__toggle {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 25px 28px;
  color: var(--ihs-ink);
  text-align: left;
  cursor: pointer;
}
.ihs-section__number { color: var(--ihs-gold-dark); font: 500 25px/1 var(--ihs-serif); }
.ihs-section__toggle strong { display: block; margin-bottom: 5px; font: 600 20px/1.2 var(--ihs-serif); }
.ihs-section__toggle small { display: block; color: var(--ihs-muted); font-size: 12px; line-height: 1.45; }
.ihs-section__toggle > .dashicons { color: var(--ihs-gold-dark); transition: transform .2s ease; }
.ihs-section.is-open .ihs-section__toggle > .dashicons { transform: rotate(180deg); }
.ihs-section__status { border-radius: 3px; background: #eee9dc; padding: 6px 10px; color: #4e5c56; font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ihs-section__status.is-progress { background: #f0e4bd; color: #7c5d16; }
.ihs-section__status.is-complete { background: #dcebe1; color: #23593d; }
.ihs-section__body { padding: 6px 28px 34px 98px; }
.ihs-fields { display: grid; gap: 20px; }
.ihs-fields--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ihs-fields + label,
.ihs-section__body > label:not(.ihs-upload):not(.ihs-check) { display: block; margin-top: 20px; }
.ihs-field-wide { grid-column: 1 / -1; }
.ihs-section label > span:not(.dashicons) { display: block; margin-bottom: 8px; color: #2d4941; font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.ihs-section label em { margin-left: 7px; color: var(--ihs-gold-dark); font-size: 9px; font-style: normal; letter-spacing: .09em; text-transform: uppercase; }
.ihs-section input:not([type="checkbox"]):not([type="file"]),
.ihs-section select,
.ihs-section textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8d7cd;
  border-radius: 2px;
  outline: none;
  background: #fff;
  padding: 13px 14px;
  color: var(--ihs-ink);
  font: 400 14px/1.45 var(--ihs-sans);
  box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ihs-section textarea { resize: vertical; }
.ihs-section input:focus,
.ihs-section select:focus,
.ihs-section textarea:focus { border-color: var(--ihs-gold-dark); box-shadow: 0 0 0 3px rgba(200,165,79,.13); }
.ihs-section [aria-invalid="true"] { border-color: #a44534 !important; }

.ihs-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 138px;
  border: 1px dashed rgba(23,61,51,.34);
  background: #fbfaf5;
  padding: 22px;
  text-align: center;
  cursor: pointer;
}
.ihs-upload:hover { border-color: var(--ihs-gold-dark); background: #fffdf6; }
.ihs-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.ihs-upload .dashicons { margin-bottom: 9px; color: var(--ihs-gold-dark); font-size: 25px; width: 25px; height: 25px; }
.ihs-upload strong { color: var(--ihs-ink); font: 600 16px/1.25 var(--ihs-serif); }
.ihs-upload small { margin-top: 5px; color: var(--ihs-muted); font-size: 11px; }
.ihs-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ihs-photo-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 14px 0 20px; }
.ihs-photo-list:empty { display: none; }
.ihs-photo-list figure { aspect-ratio: 1; margin: 0; overflow: hidden; background: #eee9dc; }
.ihs-photo-list img { width: 100%; height: 100%; object-fit: cover; }
.ihs-file-list { display: grid; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.ihs-file-list li { display: flex; align-items: center; gap: 8px; color: var(--ihs-muted); font-size: 12px; }

.ihs-protected-notice { display: grid; grid-template-columns: 32px 1fr; gap: 15px; margin-bottom: 25px; border-left: 3px solid var(--ihs-gold); background: #f2eddf; padding: 18px; }
.ihs-protected-notice .dashicons { color: var(--ihs-gold-dark); font-size: 24px; }
.ihs-protected-notice strong { font: 600 17px/1.2 var(--ihs-serif); }
.ihs-protected-notice p { margin: 4px 0 0; color: #5c685f; font-size: 12px; line-height: 1.55; }
.ihs-check { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 10px; margin-bottom: 16px; cursor: pointer; }
.ihs-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ihs-gold-dark); }
.ihs-check span { font-size: 13px !important; font-weight: 500 !important; line-height: 1.6; }

.ihs-submit-bar { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; margin-top: 30px; border-top: 3px solid var(--ihs-ink); background: #fff; padding: 20px 22px; }
.ihs-submit-bar div { display: flex; flex-direction: column; gap: 4px; }
.ihs-submit-bar strong { font: 600 18px/1.2 var(--ihs-serif); }
.ihs-submit-bar span { color: var(--ihs-muted); font-size: 11px; }
.ihs-message { margin-top: 14px; border: 1px solid var(--ihs-line); background: white; padding: 14px 18px; font-size: 13px; line-height: 1.5; }
.ihs-message.is-error { border-color: #b77b6d; background: #fff5f1; color: #733223; }
.ihs-message.is-success { border-color: #81a591; background: #eff7f1; color: #204d39; }

.ihs-sidebar { position: sticky; top: 120px; display: grid; gap: 14px; }
.ihs-sidebar section { border: 1px solid var(--ihs-line); background: rgba(255,255,255,.62); padding: 20px; }
.ihs-progress-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; font-size: 13px; font-weight: 700; }
.ihs-progress-card__top strong { color: var(--ihs-gold-dark); font: 500 28px/1 var(--ihs-serif); }
.ihs-progress-track { height: 3px; margin: 15px 0 11px; background: #dad9cf; }
.ihs-progress-track span { display: block; width: 0; height: 100%; background: var(--ihs-gold); transition: width .24s ease; }
.ihs-progress-card p { margin: 0; color: var(--ihs-muted); font-size: 11px; line-height: 1.5; }
.ihs-missing-card ul { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.ihs-missing-card li { display: flex; gap: 8px; color: #53645d; font-size: 12px; }
.ihs-missing-card li::before { content: ""; flex: 0 0 6px; width: 6px; height: 6px; margin-top: 5px; border: 1px solid var(--ihs-gold-dark); border-radius: 50%; }
.ihs-summary-photo { display: grid; aspect-ratio: 16/8; place-items: center; overflow: hidden; margin: 12px 0 15px; background: #e9e3d5; color: var(--ihs-gold-dark); }
.ihs-summary-photo img { width: 100%; height: 100%; object-fit: cover; }
.ihs-summary-card h2 { margin: 0; font: 600 26px/1.05 var(--ihs-serif); }
.ihs-summary-card > p:last-child { margin: 7px 0 0; color: var(--ihs-muted); font-size: 12px; }
.ihs-buyer-card { background: var(--ihs-deep) !important; color: #fff; border: 0 !important; }
.ihs-buyer-card .ihs-card-label { color: #dfc06a; }
.ihs-buyer-card__head { display: flex; align-items: center; gap: 10px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.13); }
.ihs-buyer-card__head > .dashicons { color: #dfc06a; }
.ihs-buyer-card__head strong { font: 600 17px/1.2 var(--ihs-serif); }
.ihs-buyer-lock { display: grid; grid-template-columns: 23px 1fr; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ihs-buyer-lock .dashicons { color: #dfc06a; font-size: 17px; }
.ihs-buyer-lock span:not(.dashicons) { display: block; color: rgba(255,255,255,.6); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.ihs-buyer-lock strong { display: block; margin-top: 3px; color: #fff; font-size: 11px; }
.ihs-buyer-card > p { margin: 14px 0 0; color: rgba(255,255,255,.65); font-size: 10px; line-height: 1.55; }
.ihs-sidebar-note { display: flex; gap: 8px; margin: 2px 4px 0; color: var(--ihs-muted); font-size: 10px; line-height: 1.5; }
.ihs-sidebar-note .dashicons { flex: 0 0 18px; color: var(--ihs-gold-dark); font-size: 17px; }

@media (min-width: 821px) {
  .ihs-form { padding-top: 26px; }
  .ihs-form__head { display: block; margin-bottom: 14px; }
  .ihs-back { display: none; }
  .ihs-form h1 { max-width: none; margin: 9px 0 8px; font-size: clamp(48px, 4.6vw, 63px); line-height: .96; }
  .ihs-lead { max-width: 760px; font-size: 14px; }
  .ihs-save-state {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 8px;
    width: max-content;
    min-width: 0;
    margin-top: 5px;
    border-left: 0;
    padding: 2px 0 0;
  }
  .ihs-save-state .dashicons { grid-row: auto; font-size: 18px; width: 18px; height: 18px; }
  .ihs-save-state strong { font-size: 12px; }
  .ihs-save-state small { font-size: 10px; }
  .ihs-save-state small::before { content: "·"; margin-right: 8px; color: var(--ihs-gold-dark); }
  .ihs-sidebar { margin-top: -200px; }
  .ihs-section__toggle { grid-template-columns: 42px minmax(0, 1fr) auto 24px; gap: 12px; padding: 15px 24px; }
  .ihs-section__number { font-size: 19px; }
  .ihs-section__toggle > span:nth-child(2) { display: grid; grid-template-columns: max-content minmax(0, 1fr); align-items: center; gap: 24px; }
  .ihs-section__toggle strong { margin: 0; font-size: 18px; }
  .ihs-section__toggle small { font-size: 11px; }
  .ihs-section__body { padding: 7px 24px 27px 78px; }
}

/* Public listing */
.ihp-hero { padding: 64px 0 72px; }
.ihp-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); background: var(--ihs-paper); }
.ihp-hero__media { position: relative; min-height: 620px; overflow: hidden; background: #dcd8ca; }
.ihp-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.ihp-media-empty { display: grid; width: 100%; height: 100%; min-height: 620px; place-items: center; color: var(--ihs-gold-dark); }
.ihp-verified { position: absolute; left: 24px; bottom: 24px; background: var(--ihs-deep); padding: 10px 14px; color: #f1d476; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.ihp-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 72px); }
.ihp-hero h1 { margin: 15px 0 16px; color: var(--ihs-ink); font: 500 clamp(48px, 5vw, 74px)/.92 var(--ihs-serif); letter-spacing: -.04em; }
.ihp-subtitle { color: #927633; font: 500 22px/1.35 var(--ihs-serif); }
.ihp-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 28px 0; background: var(--ihs-line); }
.ihp-facts span { display: flex; min-width: 0; flex-direction: column; gap: 7px; background: var(--ihs-paper); padding: 14px 12px; }
.ihp-facts small { color: var(--ihs-muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.ihp-facts strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; }
.ihp-access-card { margin-top: 4px; background: var(--ihs-deep); padding: 26px; color: #fff; }
.ihp-access-card h2 { margin: 9px 0 5px; color: #fff; font: 500 30px/1 var(--ihs-serif); }
.ihp-access-card > p:not(.ihs-card-label) { margin: 0 0 18px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.5; }
.ihp-access-card .ihs-button { margin-top: 3px; }
.ihp-price { margin: 8px 0 16px; color: #edcf78; font: 500 42px/1 var(--ihs-serif); }
.ihp-access-card dl { display: grid; gap: 10px; margin: 0; }
.ihp-access-card dl div { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 10px; }
.ihp-access-card dt { color: rgba(255,255,255,.6); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.ihp-access-card dd { margin: 0; font-size: 12px; text-align: right; }
.ihp-body { background: #fff; padding: 94px 0; }
.ihp-body__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 90px; }
.ihp-body h2,
.ihp-gallery h2 { margin: 13px 0 24px; color: var(--ihs-ink); font: 500 clamp(42px, 5vw, 64px)/.95 var(--ihs-serif); letter-spacing: -.03em; }
.ihp-story { max-width: 760px; color: #445c53; font: 400 19px/1.75 var(--ihs-serif); }
.ihp-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 42px; background: var(--ihs-line); }
.ihp-detail-grid div { background: #fff; padding: 25px 25px 25px 0; }
.ihp-detail-grid div:nth-child(even) { padding-left: 25px; }
.ihp-detail-grid h3 { margin: 0 0 7px; font: 600 18px/1.2 var(--ihs-serif); }
.ihp-detail-grid p { margin: 0; color: var(--ihs-muted); font-size: 12px; line-height: 1.6; }
.ihp-trust { border-top: 4px solid var(--ihs-gold); background: var(--ihs-cream); padding: 28px; }
.ihp-trust .dashicons { color: var(--ihs-gold-dark); font-size: 28px; width: 28px; height: 28px; }
.ihp-trust h3 { margin: 15px 0 9px; font: 600 24px/1.1 var(--ihs-serif); }
.ihp-trust p { margin: 0; color: var(--ihs-muted); font-size: 12px; line-height: 1.65; }
.ihp-video { display: flex; align-items: center; gap: 12px; margin-top: 14px; border: 1px solid var(--ihs-line); padding: 18px; color: var(--ihs-ink); text-decoration: none; }
.ihp-video .dashicons { color: var(--ihs-gold-dark); }
.ihp-gallery { padding: 90px 0 110px; background: var(--ihs-cream); }
.ihp-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ihp-gallery__grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 1024px) {
  .ihs-form__grid { grid-template-columns: minmax(0, 1fr) 290px; gap: 22px; }
  .ihs-section__body { padding-left: 28px; }
  .ihp-hero__grid { grid-template-columns: 1fr 1fr; }
  .ihp-body__grid { gap: 45px; }
}

@media (max-width: 820px) {
  .ihs-shell,
  .ihp-shell { width: min(100% - 30px, 1280px); }
  .ihs-form { padding-top: 38px; }
  .ihs-form__head { grid-template-columns: 1fr; gap: 22px; }
  .ihs-form h1 { font-size: clamp(44px, 12vw, 64px); }
  .ihs-save-state { border-left: 0; border-top: 1px solid var(--ihs-line); padding: 16px 0 0; }
  .ihs-form__grid { grid-template-columns: 1fr; }
  .ihs-sidebar { position: static; grid-row: auto; grid-template-columns: 1fr 1fr; }
  .ihs-summary-card,
  .ihs-sidebar-note { display: none !important; }
  .ihs-buyer-card { grid-column: 1 / -1; }
  .ihp-hero { padding-top: 25px; }
  .ihp-hero__grid { grid-template-columns: 1fr; }
  .ihp-hero__media { min-height: 440px; }
  .ihp-body__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .ihs-shell,
  .ihp-shell { width: min(100% - 24px, 1280px); }
  .ihs-auth { padding: 70px 0 90px; }
  .ihs-auth h1 { font-size: 52px; }
  .ihs-auth__actions { align-items: stretch; flex-direction: column; }
  .ihs-form { padding: 26px 0 80px; }
  .ihs-back { margin-bottom: 20px; }
  .ihs-form h1 { font-size: 48px; line-height: .98; }
  .ihs-lead { font-size: 14px; }
  .ihs-sidebar { grid-template-columns: 1fr; }
  .ihs-buyer-card { grid-column: auto; }
  .ihs-section__toggle { grid-template-columns: 40px minmax(0, 1fr) 20px; gap: 10px; padding: 20px 16px; }
  .ihs-section__number { font-size: 20px; }
  .ihs-section__toggle strong { font-size: 18px; }
  .ihs-section__toggle small { font-size: 10px; }
  .ihs-section__status { display: none; }
  .ihs-section__body { padding: 4px 16px 26px; }
  .ihs-fields--2,
  .ihs-media-grid { grid-template-columns: 1fr; }
  .ihs-field-wide { grid-column: auto; }
  .ihs-submit-bar { grid-template-columns: 1fr 1fr; }
  .ihs-submit-bar > div { grid-column: 1 / -1; }
  .ihs-submit-bar .ihs-button { min-width: 0; padding-inline: 12px; }
  .ihp-hero__media,
  .ihp-media-empty { min-height: 390px; }
  .ihp-hero__copy { padding: 34px 22px; }
  .ihp-hero h1 { font-size: 49px; }
  .ihp-facts { grid-template-columns: 1fr; }
  .ihp-body { padding: 65px 0; }
  .ihp-detail-grid { grid-template-columns: 1fr; }
  .ihp-detail-grid div,
  .ihp-detail-grid div:nth-child(even) { padding: 20px 0; }
  .ihp-gallery__grid { grid-template-columns: 1fr; }
}
