/* ==========================================================================
   Rose Photography — booking page
   Palette: dusty blue + blush on warm cream.
   ========================================================================== */

:root {
  /* Blues — sampled from the RP monogram so the site and logo agree */
  --blue:       #84a8cc;   /* primary, straight off the logo */
  --blue-dk:    #5f88b0;   /* hover / links */
  --blue-deep:  #3d5c7c;   /* footer, deep accents */
  --blue-pale:  #dbe7f3;   /* washes */
  --blue-mist:  #f1f6fb;   /* faintest tint */

  /* Blush */
  --blush:      #e8c4c0;
  --blush-pale: #f9eeec;

  /* Neutrals */
  --cream:      #fbf9f7;
  --paper:      #ffffff;
  --ink:        #3a4552;
  --ink-soft:   #6e7987;
  --ink-faint:  #a0a8b3;
  --line:       #e9e4df;

  --shadow-sm:  0 2px 10px rgba(58, 69, 82, .05);
  --shadow-md:  0 14px 38px rgba(58, 69, 82, .10);
  --shadow-lg:  0 30px 80px rgba(58, 69, 82, .24);

  --display:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --script:     'Alex Brush', 'Cormorant Garamond', cursive;
  --sans:       'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius:     2px;
  --wrap:       1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is not optional here. The logo carries width/height attributes
   so the browser can reserve space before it loads; without this, any rule
   that overrides the width leaves the attribute height in place and the
   image stretches. Anything that genuinely needs a fixed height sets one
   explicitly below, and those rules are more specific than this. */
img { max-width: 100%; height: auto; display: block; }

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

/* --------------------------------------------------------------------------
   Gentle reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.22, .61, .36, 1),
              transform .9s cubic-bezier(.22, .61, .36, 1);
}

.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 96px 24px 120px;
  background-color: var(--blue-deep);
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* A cool blue scrim keeps type legible and ties the photo to the palette. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(41, 56, 74, .38) 0%,
      rgba(41, 56, 74, .14) 32%,
      rgba(41, 56, 74, .46) 74%,
      rgba(33, 46, 62, .68) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__avatar {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 8px 34px rgba(28, 40, 55, .34);
  background: rgba(255, 255, 255, .1);
}

.hero__avatar::after {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .26);
  pointer-events: none;
}

.hero__avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero__avatar--empty { backdrop-filter: blur(2px); }

/* The RP monogram. It is light artwork on transparency, so it belongs on the
   dark hero and the deep-blue footer, never on the cream page. */
.hero__logo {
  width: min(300px, 62vw);
  margin: 0 auto 26px;
  filter: drop-shadow(0 4px 22px rgba(20, 32, 46, .45));
}

/* When the logo carries the name, the text title becomes a screen-reader-only
   heading so the page still has a proper h1. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero__title {
  margin: 0 0 26px;
  font-family: var(--script);
  font-weight: 400;
  /* Alex Brush sets small for its point size — it needs roughly 1.5x
     what the serif took to hold the same presence. */
  font-size: clamp(3.8rem, 11vw, 7rem);
  line-height: 1.0;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 2px 30px rgba(24, 34, 46, .42);
}

.hero__greeting,
.hero__intro {
  margin: 0 auto;
  color: rgba(255, 255, 255, .96);
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 1px 18px rgba(24, 34, 46, .5);
}

.hero__greeting {
  font-family: var(--display);
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: .01em;
}

.hero__intro { font-size: .97rem; max-width: 560px; line-height: 1.85; }

.hero__chevron {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, .85);
  animation: nudge 2.6s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 7px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__chevron { animation: none; }
  html { scroll-behavior: auto; }
  .card, .card__media, .reveal { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Section headings — serif small caps between softly fading rules
   -------------------------------------------------------------------------- */

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 12px;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3rem);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.section-title::before,
.section-title::after {
  content: '';
  width: 58px;
  height: 1px;
  flex: none;
}

.section-title::before { background: linear-gradient(to right, transparent, var(--blue)); }
.section-title::after  { background: linear-gradient(to left,  transparent, var(--blue)); }

.section-sub {
  margin: 0 0 56px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.empty { text-align: center; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Sessions
   -------------------------------------------------------------------------- */

.sessions { padding: 104px 0 96px; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: 0;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1),
              box-shadow .5s cubic-bezier(.22, .61, .36, 1),
              border-color .5s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-pale);
}

.card__media {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-pale);
  transition: transform 1.1s cubic-bezier(.22, .61, .36, 1);
}

.card:hover .card__media { transform: scale(1.045); }

/* No photo yet: a soft blue-to-blush wash with the session name. */
.card__media--empty {
  display: grid;
  place-items: center;
  background:
    linear-gradient(155deg,
      var(--blue-pale) 0%,
      var(--blue-mist) 42%,
      var(--blush-pale) 100%);
}

.card__placeholder {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: .1em;
  color: rgba(67, 95, 125, .48);
}

.card__body {
  padding: 22px 24px 26px;
  background: var(--paper);
  position: relative;
  z-index: 1;
}

.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.card__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.42rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
}

.card__price {
  flex: none;
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--blue-dk);
  white-space: nowrap;
}

.card__price em { font-style: italic; font-size: .86rem; color: var(--ink-faint); }

/* A hairline that grows from blush to blue as you hover the card. */
.card__body::before {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  margin: 0 0 14px;
  background: var(--blush);
  transition: width .5s cubic-bezier(.22, .61, .36, 1), background .5s ease;
}

.card:hover .card__body::before { width: 68px; background: var(--blue); }

.card__desc {
  display: block;
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.75;
}

.card__cta {
  display: block;
  margin: 16px 0 0;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-dk);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .4s ease, transform .4s ease;
}

.card:hover .card__cta,
.card:focus-visible .card__cta { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about {
  padding: 70px 0 104px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--blue-mist) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
}

/* Offset frame behind the portrait — quiet, editorial. */
.about__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-pale);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}

.about__photo::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .42);
  pointer-events: none;
}

.about__photo img { width: 100%; height: 100%; object-fit: cover; }

.about__photo--empty {
  background:
    linear-gradient(155deg,
      var(--blue-pale) 0%,
      var(--blue-mist) 45%,
      var(--blush-pale) 100%);
}

.about__body .section-title { justify-content: flex-start; }
.about__body .section-title::before { display: none; }

.about__text {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2;
  white-space: pre-line;
}

/* --------------------------------------------------------------------------
   Closing call to action
   -------------------------------------------------------------------------- */

.cta {
  padding: 96px 0 108px;
  text-align: center;
  background: var(--blue-mist);
}

.cta__copy {
  margin: 0 0 34px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.14rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 15px 42px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .35s ease, border-color .35s ease,
              color .35s ease, box-shadow .35s ease;
}

.btn:hover:not(:disabled) {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  box-shadow: 0 8px 24px rgba(91, 122, 158, .28);
}

.btn:disabled { opacity: .36; cursor: not-allowed; }

.btn-quiet {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
  box-shadow: none;
}

.btn-quiet:hover:not(:disabled) {
  background: var(--blush-pale);
  border-color: var(--blush);
  color: var(--ink);
  box-shadow: none;
}

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-foot {
  padding: 56px 24px 58px;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .8);
  text-align: center;
}

.site-foot__logo {
  width: 168px;
  margin: 0 auto 22px;
  opacity: .95;
}

.site-foot__brand {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}

/* Blush hairline under the wordmark. */
.site-foot__brand::after {
  content: '';
  display: block;
  width: 54px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--blush);
}

.site-foot__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 0 0 16px;
  font-size: .85rem;
}

.site-foot__links a {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 196, 192, .4);
  padding-bottom: 2px;
}

.site-foot__links a:hover { color: #fff; border-color: var(--blush); }

.site-foot__meta { margin: 0; font-size: .78rem; color: rgba(255, 255, 255, .5); }

/* --------------------------------------------------------------------------
   Booking sheet
   -------------------------------------------------------------------------- */

.sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sheet[hidden] { display: none; }

.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 56, 74, .55);
  backdrop-filter: blur(4px);
}

.sheet__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  max-height: min(92vh, 880px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: rise .4s cubic-bezier(.22, .61, .36, 1);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.sheet__close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink-faint);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.sheet__close:hover { color: var(--ink); }

.sheet__head {
  padding: 28px 30px 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.sheet__eyebrow {
  margin: 0 0 4px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-dk);
}

.sheet__title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.95rem;
  line-height: 1.15;
}

.steps {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .66rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.steps li {
  flex: 1;
  padding: 0 0 11px;
  border-bottom: 2px solid var(--line);
  text-align: center;
  transition: color .3s ease, border-color .3s ease;
}

.steps li.is-active { color: var(--blue-dk); border-bottom-color: var(--blue); }
.steps li.is-done   { color: var(--ink-soft); border-bottom-color: var(--blush); }

.sheet__body {
  flex: 1;
  overflow-y: auto;
  padding: 26px 30px;
  -webkit-overflow-scrolling: touch;
}

.sheet__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 30px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.sheet__foot .btn:only-child { margin-left: auto; }

.sheet__error {
  margin: 18px 0 0;
  padding: 12px 15px;
  border: 1px solid #dcb4ae;
  border-left-width: 3px;
  border-radius: var(--radius);
  background: var(--blush-pale);
  color: #8d4438;
  font-size: .9rem;
}

.step__lead { margin: 0 0 20px; color: var(--ink-soft); font-size: .95rem; }

.step__includes {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blush);
  border-radius: var(--radius);
  background: var(--blue-mist);
}

.step__includes h4 {
  margin: 0 0 8px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.step__includes ul { margin: 0; padding-left: 18px; font-size: .9rem; color: var(--ink-soft); }
.step__includes li { padding: 2px 0; }

/* --------------------------------------------------------------------------
   Calendar
   -------------------------------------------------------------------------- */

.cal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal__label {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.cal__nav {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.cal__nav:hover:not(:disabled) {
  background: var(--blue-mist);
  border-color: var(--blue-pale);
  color: var(--blue-dk);
}

.cal__nav:disabled { opacity: .3; cursor: not-allowed; }

.cal__dow,
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }

.cal__dow {
  margin-bottom: 8px;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}

.cal__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-faint);
  font-family: var(--sans);
  font-size: .95rem;
  cursor: default;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.cal__day--open {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.cal__day--open:hover { border-color: var(--blue); background: var(--blue-mist); }

.cal__day--sel { background: var(--blue); border-color: var(--blue); color: #fff; }

.cal__day--blank { visibility: hidden; }
.cal__day--loading { opacity: .35; }

.cal__hint {
  margin: 18px 0 0;
  font-size: .84rem;
  font-style: italic;
  color: var(--ink-faint);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Time slots
   -------------------------------------------------------------------------- */

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: 9px;
}

.slot {
  padding: 13px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.slot:hover { border-color: var(--blue); background: var(--blue-mist); }

.slot--sel { background: var(--blue); border-color: var(--blue); color: #fff; }

.slot small { display: block; font-size: .74rem; opacity: .68; }

/* --------------------------------------------------------------------------
   Form fields
   -------------------------------------------------------------------------- */

.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fields .full { grid-column: 1 / -1; }

.fields label,
.sign {
  display: block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fields input,
.fields textarea,
.sign input {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.fields input:focus,
.fields textarea:focus,
.sign input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 151, 184, .15);
}

.fields textarea { resize: vertical; }

.field-bad input,
.field-bad textarea { border-color: #cf9a90; background: var(--blush-pale); }

.req { color: var(--blush); }

/* --------------------------------------------------------------------------
   Contract
   -------------------------------------------------------------------------- */

.summary {
  margin-bottom: 26px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue-mist);
  font-size: .93rem;
}

.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; margin: 0; }
.summary dt { color: var(--ink-faint); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.summary dd { margin: 0; }

.contract__title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: .04em;
}

.contract {
  max-height: 260px;
  overflow-y: auto;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: .84rem;
  line-height: 1.8;
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 18px;
  font-size: .93rem;
  color: var(--ink);
  cursor: pointer;
}

.check input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--blue); flex: none; }

.sign input {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--blue-deep);
}

.sign__note { margin: 10px 0 0; font-size: .78rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   Confirmation
   -------------------------------------------------------------------------- */

.done { text-align: center; padding: 20px 0 10px; }

.done__mark {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue-dk);
  background: var(--blue-mist);
}

.done__mark::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--blush);
}

.done h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: .03em;
}

.done p { margin: 0 0 14px; color: var(--ink-soft); }

.done__ref {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.done__ref strong { color: var(--ink); letter-spacing: .2em; }

.done__next { font-size: .92rem; font-style: italic; }

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; gap: 38px; max-width: 480px; margin: 0 auto; }
  .about__body .section-title { justify-content: center; }
  .about__body .section-title::before { display: block; }
  .about__text { text-align: center; }
}

@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; gap: 28px; max-width: 400px; }

  .sessions { padding: 74px 0 66px; }
  .about    { padding: 56px 0 76px; }
  .cta      { padding: 72px 0 80px; }

  .section-title { gap: 14px; letter-spacing: 0; }
  .section-title::before,
  .section-title::after { width: 28px; }

  .card__cta { opacity: 1; transform: none; }

  .sheet { padding: 0; align-items: flex-end; }

  .sheet__panel {
    max-width: none;
    max-height: 94svh;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .sheet__head { padding: 24px 20px 0; }
  .sheet__body { padding: 22px 20px; }
  .sheet__foot { padding: 15px 20px; }

  .steps { font-size: .58rem; letter-spacing: .08em; }

  .fields { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Enquiry form
   -------------------------------------------------------------------------- */

.enquiry { max-width: 660px; margin: 0 auto; text-align: left; }

.enquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.enquiry__grid .full { grid-column: 1 / -1; }

.enquiry label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.enquiry input,
.enquiry select,
.enquiry textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
}

.enquiry textarea { resize: vertical; }

.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(124, 151, 184, .15);
}

.enquiry label.is-bad input,
.enquiry label.is-bad textarea { border-color: #cf9a90; background: var(--blush-pale); }

/* The honeypot must be reachable by a bot but never by a person. */
.enquiry__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry__msg {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--blue-mist);
  color: var(--ink-soft);
  font-size: .93rem;
}

.enquiry__msg.is-bad { background: var(--blush-pale); color: #8d4438; }

.enquiry__alt { margin: 22px 0 0; font-size: .88rem; color: var(--ink-faint); }
.enquiry__alt a { color: var(--blue-dk); }

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