/* ============================================================
   Whetzel CPA — inner-page styles
   Extends styles.css. Pages live one level deep (e.g. about/),
   so they reference ../styles.css and ../inner-pages.css.
   ============================================================ */

/* ---------- Compact inner hero ---------- */
.inner-hero {
  background: var(--paper);
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
}
.inner-hero .crumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 28px;
}
.inner-hero .crumb a { color: var(--slate); }
.inner-hero .crumb a:hover { color: var(--navy); }
.inner-hero .crumb .sep { color: rgba(11,27,44,0.28); }
.inner-hero h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-wrap: balance;
}
.inner-hero h1 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.inner-hero .lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy-80);
  max-width: 52ch;
  text-wrap: pretty;
}
.inner-hero .hero-cta-row {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.inner-hero-photo {
  position: relative;
  width: 100%;
  height: clamp(320px, 36vw, 460px);
  background: var(--navy);
  overflow: hidden;
}
.inner-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inner-hero-photo .ph-tag {
  position: absolute; left: 16px; top: 16px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 12px;
  background: rgba(11,27,44,0.7); color: var(--cream);
  z-index: 2;
}
@media (max-width: 980px) {
  .inner-hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Section primitives ---------- */
.page-section {
  padding-top: clamp(56px, 7vw, 108px);
  padding-bottom: clamp(56px, 7vw, 108px);
}
.page-section.cream-bg { background: var(--cream); }
.page-section.slate-bg { background: var(--slate); color: var(--cream); }
.page-section.navy-bg { background: var(--navy); color: var(--cream); }
.page-section.paper-bg { background: var(--paper); }

.page-section .sub-h {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
.page-section.slate-bg .sub-h,
.page-section.navy-bg .sub-h { color: var(--cream); }
.page-section .sub-h .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.page-section .section-eyebrow-flat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.page-section.slate-bg .section-eyebrow-flat,
.page-section.navy-bg .section-eyebrow-flat { color: rgba(241,236,226,0.7); }
.page-section .section-eyebrow-flat .bar {
  width: 22px; height: 1px; background: currentColor;
}

.page-section .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-80);
  max-width: 60ch;
  text-wrap: pretty;
  margin-top: 18px;
}
.page-section.slate-bg .lead,
.page-section.navy-bg .lead { color: rgba(241,236,226,0.82); }

.two-col-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}
@media (max-width: 980px) { .two-col-head { grid-template-columns: 1fr; } }

/* ---------- Checklist / "what's included" ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.checklist .item {
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 28px 28px 28px 60px;
  position: relative;
}
.checklist .item:nth-child(2n) { border-right: none; }
.checklist .item::before {
  content: "";
  position: absolute;
  left: 24px; top: 32px;
  width: 18px; height: 18px;
  border: 1.5px solid var(--slate);
  border-radius: 50%;
}
.checklist .item::after {
  content: "";
  position: absolute;
  left: 28px; top: 38px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--slate);
  border-bottom: 1.5px solid var(--slate);
  transform: rotate(-45deg);
  transform-origin: center;
}
.checklist .item h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin-bottom: 8px;
}
.checklist .item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy-80);
  text-wrap: pretty;
}
.page-section.slate-bg .checklist { border-top-color: rgba(241,236,226,0.22); }
.page-section.slate-bg .checklist .item {
  border-color: rgba(241,236,226,0.18);
}
.page-section.slate-bg .checklist .item::before { border-color: var(--cream); }
.page-section.slate-bg .checklist .item::after { border-color: var(--cream); }
.page-section.slate-bg .checklist .item h4 { color: var(--cream); }
.page-section.slate-bg .checklist .item p { color: rgba(241,236,226,0.82); }
@media (max-width: 780px) {
  .checklist { grid-template-columns: 1fr; }
  .checklist .item { border-right: none; }
}

/* ---------- Audience / "who it's for" ---------- */
.audience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.audience .audience-photo {
  position: relative;
  height: clamp(320px, 38vw, 480px);
  background: var(--navy);
  overflow: hidden;
}
.audience .audience-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.audience ul {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.audience li {
  padding: 22px 0 22px 48px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy);
  text-wrap: pretty;
}
.audience li::before {
  content: "";
  position: absolute;
  left: 4px; top: 30px;
  width: 22px; height: 1px;
  background: var(--slate);
}
.audience li strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}
.audience li span {
  font-size: 15px; color: var(--navy-80);
}
@media (max-width: 980px) {
  .audience { grid-template-columns: 1fr; }
}

/* ---------- Numbered process (slate accents) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.steps .step {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.steps .step:last-child { border-right: none; }
.steps .step .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 88px);
  color: var(--slate);
  line-height: 0.9;
  margin-bottom: 28px;
  display: block;
  letter-spacing: -0.02em;
}
.steps .step h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.steps .step p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy-80);
  text-wrap: pretty;
}
.steps .step .foot {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex; justify-content: space-between; gap: 12px;
}
@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr; }
  .steps .step { border-right: none; border-bottom: 1px solid var(--rule); }
  .steps .step:last-child { border-bottom: none; }
}

/* steps on slate background */
.page-section.slate-bg .steps { border-top-color: rgba(241,236,226,0.22); }
.page-section.slate-bg .steps .step { border-color: rgba(241,236,226,0.18); }
.page-section.slate-bg .steps .step .num { color: var(--cream); }
.page-section.slate-bg .steps .step h3 { color: var(--cream); }
.page-section.slate-bg .steps .step p { color: rgba(241,236,226,0.82); }
.page-section.slate-bg .steps .step .foot { color: rgba(241,236,226,0.65); }

/* ---------- Pricing transparency ---------- */
.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--rule);
  background: var(--paper);
}
.pricing-card .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.pricing-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
.pricing-card h3 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.pricing-card p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy-80);
  text-wrap: pretty;
}
.pricing-card .right-col {
  border-left: 1px solid var(--rule);
  padding-left: clamp(20px, 3vw, 36px);
  display: grid; gap: 14px;
}
.pricing-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 12px;
}
.pricing-card .row .k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate);
}
.pricing-card .row .v { font-size: 15px; color: var(--navy); font-weight: 500; }
@media (max-width: 780px) {
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-card .right-col { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 18px; }
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: baseline;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 22px);
  letter-spacing: -0.005em;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .qnum {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--slate);
  padding-top: 4px;
}
.faq-item summary .toggle {
  position: relative;
  width: 18px; height: 18px;
  justify-self: end;
  align-self: center;
}
.faq-item summary .toggle::before,
.faq-item summary .toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
}
.faq-item summary .toggle::before {
  left: 0; right: 0; top: 8px; height: 1.5px;
}
.faq-item summary .toggle::after {
  top: 0; bottom: 0; left: 8px; width: 1.5px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.faq-item[open] summary .toggle::after { transform: scaleY(0); opacity: 0; }
.faq-item .answer {
  padding: 0 0 28px 52px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-80);
  text-wrap: pretty;
  max-width: 64ch;
}
.faq-item .answer p + p { margin-top: 12px; }

/* ---------- Prose block (about / story) ---------- */
.prose {
  max-width: 64ch;
}
.prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-80);
  text-wrap: pretty;
}
.prose p + p { margin-top: 18px; }
.prose h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.014em;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
}
.prose .pull {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.3;
  color: var(--navy);
  border-left: 2px solid var(--slate);
  padding-left: 24px;
  max-width: 56ch;
}

/* ---------- Credentials grid (about) ---------- */
.credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.credentials .cred {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--rule);
}
.credentials .cred:last-child { border-right: none; }
.credentials .cred .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.credentials .cred .v {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.credentials .cred .sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-60);
  letter-spacing: 0.04em;
}
@media (max-width: 780px) {
  .credentials { grid-template-columns: 1fr 1fr; }
  .credentials .cred:nth-child(2n) { border-right: none; }
  .credentials .cred:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* ---------- Side-by-side text + photo ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split.reverse .split-photo { order: 2; }
.split-photo {
  position: relative;
  height: clamp(380px, 44vw, 580px);
  background: var(--navy);
  overflow: hidden;
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-photo .ph-tag {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 12px;
  background: rgba(11,27,44,0.7); color: var(--cream);
  z-index: 2;
}
.split-text h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
.split-text h2 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.split-text p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-80);
  text-wrap: pretty;
  max-width: 52ch;
}
.split-text p + p { margin-top: 14px; }
.split-text .row-meta {
  margin-top: 30px;
  display: grid; gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  max-width: 420px;
}
.split-text .row-meta .row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.split-text .row-meta .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate);
}
.split-text .row-meta .v { font-size: 15px; color: var(--navy); font-weight: 500; }
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-photo { order: 0; }
}

/* ---------- CTA strip (inner-page final cta) ---------- */
.cta-strip {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.cta-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
.cta-strip h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--cream);
  text-wrap: balance;
}
.cta-strip h2 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cta-strip p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(241,236,226,0.78);
  max-width: 50ch;
  text-wrap: pretty;
}
.cta-strip .actions {
  display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid rgba(241,236,226,0.2);
  padding-left: clamp(20px, 3vw, 36px);
}
.cta-strip .actions .row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
}
.cta-strip .actions .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(241,236,226,0.6);
}
.cta-strip .actions .v { font-size: 15px; color: var(--cream); font-weight: 500; }
.cta-strip .actions .btn { margin-top: 12px; align-self: flex-start; }
.cta-strip .btn-ghost {
  border-color: rgba(241,236,226,0.3);
  color: var(--cream);
}
.cta-strip .btn-ghost:hover {
  background: rgba(241,236,226,0.08);
  border-color: var(--cream);
}
@media (max-width: 880px) {
  .cta-strip-grid { grid-template-columns: 1fr; }
  .cta-strip .actions { border-left: none; padding-left: 0; border-top: 1px solid rgba(241,236,226,0.2); padding-top: 24px; }
}

/* ---------- Resource cards (blog index) ---------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.resource-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 28px 36px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper);
  transition: background 200ms ease;
}
.resource-card:hover { background: var(--cream); }
.resource-grid .resource-card:nth-child(3n) { border-right: none; }
.resource-card .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.resource-card .date {
  font-family: var(--font-mono); font-size: 11px; color: var(--navy-60);
}
.resource-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.014em;
  color: var(--navy);
  line-height: 1.15;
  text-wrap: balance;
}
.resource-card .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy);
}
@media (max-width: 980px) {
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid .resource-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .resource-grid .resource-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .resource-grid { grid-template-columns: 1fr; }
  .resource-grid .resource-card { border-right: none !important; }
}

/* ---------- Calculator panels ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.calc-input, .calc-output { padding: clamp(28px, 3vw, 40px); }
.calc-input { border-right: 1px solid var(--rule); }
.calc-input .field {
  display: grid; gap: 8px;
  margin-bottom: 20px;
}
.calc-input label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.calc-input input, .calc-input select {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--navy);
  border-radius: 0;
  transition: border-color 150ms ease;
}
.calc-input input:focus, .calc-input select:focus {
  outline: none;
  border-color: var(--navy);
}
.calc-output {
  background: var(--navy);
  color: var(--cream);
}
.calc-output .big {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 56px);
  letter-spacing: -0.022em;
  color: var(--cream);
  line-height: 1;
  margin-top: 8px;
}
.calc-output .big .em {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(241,236,226,0.7);
  font-size: 0.6em;
  margin-left: 6px;
}
.calc-output .k {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.6);
}
.calc-output .breakdown {
  margin-top: 32px;
  display: grid; gap: 12px;
  border-top: 1px solid rgba(241,236,226,0.18);
  padding-top: 20px;
}
.calc-output .breakdown .row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px;
}
.calc-output .breakdown .row .k {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(241,236,226,0.6);
}
.calc-output .breakdown .row .v { color: var(--cream); font-weight: 500; }
@media (max-width: 780px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-input { border-right: none; border-bottom: 1px solid var(--rule); }
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.contact-form { padding: clamp(28px, 3vw, 44px); border-right: 1px solid var(--rule); }
.contact-form .field {
  display: grid; gap: 8px;
  margin-bottom: 20px;
}
.contact-form .row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.contact-form input, .contact-form textarea, .contact-form select {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--navy);
  border-radius: 0;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--navy);
}
.contact-side {
  padding: clamp(28px, 3vw, 44px);
  background: var(--cream);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-side .item {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
}
.contact-side .item:last-child { border-bottom: none; }
.contact-side .item .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate);
}
.contact-side .item .v {
  margin-top: 6px;
  font-size: 16px; color: var(--navy); font-weight: 500;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { border-right: none; border-bottom: 1px solid var(--rule); }
  .contact-form .row-two { grid-template-columns: 1fr; }
}

/* ---------- Careers / positions ---------- */
.positions {
  border-top: 1px solid var(--rule);
}
.position {
  display: grid;
  grid-template-columns: 80px minmax(0, 2fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 200ms ease;
}
.position:hover { background: var(--cream); }
.position .num {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; color: var(--slate);
}
.position .title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.012em;
  color: var(--navy);
}
.position .title .sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-60);
  font-weight: 400;
}
.position .meta-col {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-60);
}
.position .apply {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
@media (max-width: 780px) {
  .position { grid-template-columns: 1fr; gap: 8px; }
  .position .num { display: none; }
}

/* ---------- Booking widget (inner page) ---------- */
.booking-inline {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 22px;
}
