/* =====================================================================
   Sette Style — Coming Soon
   Built on Bootstrap 5.3 · custom layer only, no framework overrides
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  --ss-cream:        #F4EDE7;
  --ss-cream-soft:   #FBF7F4;
  --ss-ink:          #1A1613;
  --ss-body:         #6F6862;
  --ss-muted:        #9A918A;
  --ss-rose:         #C08B78;
  --ss-rose-soft:    #D9B4A3;
  --ss-button:       #C69A8D;
  --ss-button-hover: #B8887A;
  --ss-line:         #E7D9CF;
  --ss-dark:         #121010;
  --ss-dark-text:    #F2E9E2;
  --ss-script:       #DBBFAD;

  --ss-serif:  'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --ss-sans:   'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ss-script-font: 'Dancing Script', 'Segoe Script', cursive;

  --ss-bar-height: 132px;
  --ss-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------------
   2. Base
   --------------------------------------------------------------------- */
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--ss-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ss-body);
  background-color: var(--ss-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--ss-rose); color: #fff; }

.ss-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

/* Visually hidden but available to screen readers */
.ss-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------
   3. Hero — cream panel on the left, photograph bleeding off the right
   --------------------------------------------------------------------- */
.ss-hero {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(18px, 2.4vh, 30px) 0;
}

/* The photograph occupies the right half only, so the extracted crop renders
   at close to 1:1 instead of being blown up across the whole hero. Mobile
   resets this back to a full-bleed banner. */
.ss-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 47%;
  z-index: -2;
  background-color: var(--ss-cream);
  background-image: var(--ss-hero-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* The photograph dissolves into the cream along its own left edge, so there
     is never a hard seam no matter how the scrim above it is tuned. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .4) 9%, #000 22%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .4) 9%, #000 22%);
}

/* Fallback styling when the photograph has not been dropped in yet */
.ss-hero__media--placeholder {
  background-image:
    radial-gradient(ellipse 60% 55% at 72% 30%, rgba(255, 252, 249, .95), transparent 70%),
    radial-gradient(ellipse 45% 45% at 92% 72%, rgba(214, 173, 155, .75), transparent 72%),
    radial-gradient(ellipse 50% 40% at 60% 88%, rgba(196, 156, 133, .6), transparent 70%),
    linear-gradient(140deg, #F0E3D9 0%, #E4CDBF 45%, #CBA793 100%);
}

/* The cream scrim that turns the right-hand photo into a left-hand canvas */
.ss-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    var(--ss-cream) 0%,
    var(--ss-cream) 42%,
    rgba(244, 237, 231, .84) 48%,
    rgba(244, 237, 231, .44) 54%,
    rgba(244, 237, 231, .12) 60%,
    rgba(244, 237, 231, 0) 66%
  );
}

.ss-hero__inner {
  width: 100%;
  min-width: 0;          /* a flex item must be allowed to shrink below the */
  max-width: 1440px;     /* min-content width of the no-wrap headline       */
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.ss-hero__content {
  width: 100%;
  min-width: 0;
  max-width: 560px;
  margin-left: clamp(0px, 3.6vw, 66px);
  text-align: center;
}

/* ---------------------------------------------------------------------
   4. Brand lockup
   --------------------------------------------------------------------- */
.ss-brand { margin-bottom: clamp(12px, 2.2vh, 24px); }

.ss-brand__mark {
  display: block;
  width: clamp(78px, 8.4vw, 104px);
  height: auto;
  margin: 0 auto clamp(4px, .9vh, 9px);
}

.ss-brand__name {
  margin: 0;
  font-family: var(--ss-serif);
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  color: var(--ss-ink);
}

.ss-brand__rule {
  width: 172px;
  height: 1px;
  margin: 9px auto 8px;
  border: 0;
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--ss-line) 22%, var(--ss-line) 78%, transparent);
}

.ss-brand__tagline {
  margin: 0;
  font-size: clamp(8px, .78vw, 9.5px);
  font-weight: 500;
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  color: var(--ss-rose);
}

/* ---------------------------------------------------------------------
   5. Headline + divider
   --------------------------------------------------------------------- */
.ss-headline {
  margin: 0;
  font-family: var(--ss-serif);
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .03em;
  text-indent: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ss-ink);
}

.ss-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(300px, 82%);
  margin: clamp(9px, 1.6vh, 17px) auto clamp(11px, 1.8vh, 19px);
}

.ss-divider::before,
.ss-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ss-rose));
  opacity: .55;
}

.ss-divider::after { background: linear-gradient(90deg, var(--ss-rose), transparent); }

.ss-divider svg {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  color: var(--ss-rose);
}

/* ---------------------------------------------------------------------
   6. Copy
   --------------------------------------------------------------------- */
.ss-lede {
  margin: 0 auto;
  max-width: 380px;
  font-size: clamp(13.5px, 1.15vw, 14.5px);
  font-weight: 400;
  line-height: 1.78;
  color: var(--ss-body);
}

.ss-prompt {
  margin: clamp(10px, 1.8vh, 17px) 0 clamp(10px, 1.7vh, 15px);
  font-size: clamp(14px, 1.25vw, 15.5px);
  font-weight: 600;
  letter-spacing: .005em;
  color: var(--ss-ink);
}

/* ---------------------------------------------------------------------
   7. Field legend — NAME | OR | EMAIL | OR | PHONE NUMBER
   --------------------------------------------------------------------- */
.ss-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 15px);
  margin-bottom: 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ss-muted);
}

.ss-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.ss-legend__item svg {
  width: 15px;
  height: 15px;
  color: var(--ss-rose);
}

.ss-legend__sep {
  width: 1px;
  height: 13px;
  background: var(--ss-line);
}

.ss-legend__or {
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--ss-muted);
}

/* ---------------------------------------------------------------------
   8. Form
   --------------------------------------------------------------------- */
.ss-form,
.ss-legend,
.ss-note,
.ss-feedback {
  max-width: 492px;
  margin-left: auto;
  margin-right: auto;
}

.ss-form { margin-top: 0; margin-bottom: 0; }

.ss-field {
  position: relative;
  margin-bottom: 9px;
}

.ss-field__icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  width: 16px;
  height: 16px;
  color: var(--ss-rose);
  pointer-events: none;
}

.ss-field__icon svg { width: 100%; height: 100%; }

.ss-input {
  display: block;
  width: 100%;
  height: 38px;
  padding: 0 16px 0 43px;
  font-family: var(--ss-sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ss-ink);
  background-color: var(--ss-cream-soft);
  border: 1px solid var(--ss-line);
  border-radius: 6px;
  outline: 0;
  transition: border-color .25s var(--ss-ease), box-shadow .25s var(--ss-ease), background-color .25s var(--ss-ease);
  -webkit-appearance: none;
  appearance: none;
}

.ss-input::placeholder { color: #A9A099; opacity: 1; }

.ss-input:hover { border-color: #DCC7BA; }

.ss-input:focus {
  background-color: #fff;
  border-color: var(--ss-rose);
  box-shadow: 0 0 0 3px rgba(192, 139, 120, .13);
}

.ss-input.is-invalid { border-color: #C6706A; }

.ss-field__error {
  display: none;
  margin: 5px 2px 0;
  font-size: 11px;
  letter-spacing: .02em;
  color: #B4635D;
  text-align: left;
}

.ss-field__error.is-visible { display: block; }

/* Honeypot — never shown to a human */
.ss-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ss-submit {
  display: block;
  width: 100%;
  max-width: 380px;
  height: 40px;
  margin: 14px auto 0;
  padding: 0 18px;
  font-family: var(--ss-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .19em;
  text-indent: .19em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--ss-button);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color .25s var(--ss-ease), transform .25s var(--ss-ease), box-shadow .25s var(--ss-ease);
}

.ss-submit:hover:not(:disabled) {
  background-color: var(--ss-button-hover);
  box-shadow: 0 8px 22px -12px rgba(24, 18, 15, .55);
}

.ss-submit:active:not(:disabled) { transform: translateY(1px); }

.ss-submit:disabled { opacity: .62; cursor: default; }

.ss-submit:focus-visible,
.ss-input:focus-visible {
  outline: 2px solid var(--ss-rose);
  outline-offset: 2px;
}

.ss-note {
  margin: 11px auto 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .015em;
  color: var(--ss-muted);
}

/* Feedback shown in place of the form after a successful signup */
.ss-feedback {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  border-radius: 6px;
  border: 1px solid var(--ss-line);
  background-color: rgba(255, 255, 255, .72);
  color: var(--ss-ink);
}

.ss-feedback.is-visible { display: block; }

.ss-feedback--error {
  border-color: rgba(198, 112, 106, .45);
  background-color: rgba(255, 247, 246, .9);
  color: #9C4F49;
}

.ss-feedback__title {
  display: block;
  margin-bottom: 3px;
  font-family: var(--ss-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ss-ink);
}

/* ---------------------------------------------------------------------
   9. Footer bar
   --------------------------------------------------------------------- */
.ss-bar {
  flex: 0 0 auto;
  min-height: var(--ss-bar-height);
  display: flex;
  align-items: center;
  background-color: var(--ss-dark);
  color: var(--ss-dark-text);
  padding: 22px clamp(20px, 8.6vw, 118px);
}

.ss-bar__inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.ss-bar__features {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: clamp(18px, 3.4vw, 52px);
}

.ss-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 0;
}

.ss-feature__icon {
  flex: 0 0 auto;
  display: flex;
  width: 27px;
  height: 24px;
  color: var(--ss-rose);
}

.ss-feature__icon svg { width: 100%; height: 100%; }

.ss-feature__label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ss-dark-text);
}

.ss-bar__rule {
  flex: 0 0 auto;
  width: 1px;
  align-self: stretch;
  min-height: 46px;
  background: rgba(242, 233, 226, .16);
}

.ss-bar__script {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--ss-script-font);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ss-script);
  text-align: left;
}

.ss-bar__script span { display: block; }

/* ---------------------------------------------------------------------
   10. Entrance animation
   --------------------------------------------------------------------- */
.ss-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: ss-rise .9s var(--ss-ease) forwards;
}

.ss-reveal--1 { animation-delay: .05s; }
.ss-reveal--2 { animation-delay: .18s; }
.ss-reveal--3 { animation-delay: .3s; }
.ss-reveal--4 { animation-delay: .42s; }
.ss-reveal--5 { animation-delay: .54s; }

@keyframes ss-rise {
  to { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   11. Responsive
   --------------------------------------------------------------------- */

/* Large desktop — give the copy a little more air */
@media (min-width: 1600px) {
  .ss-hero__content { max-width: 600px; }
}

/* Small desktop / landscape tablet — pull the scrim further right */
@media (max-width: 1199.98px) {
  .ss-hero__media { width: 56%; }

  .ss-hero__scrim {
    background: linear-gradient(
      90deg,
      var(--ss-cream) 0%,
      var(--ss-cream) 44%,
      rgba(244, 237, 231, .82) 53%,
      rgba(244, 237, 231, .34) 63%,
      rgba(244, 237, 231, 0) 72%
    );
  }
  .ss-hero__content { margin-left: 0; }
  .ss-bar__inner { gap: 22px; }
  .ss-feature { gap: 11px; }
  .ss-feature__label { font-size: 9.5px; letter-spacing: .1em; }
}

/* Tablet & mobile — photograph on top, cream canvas beneath */
@media (max-width: 991.98px) {
  .ss-hero {
    align-items: flex-start;
    padding: 0 0 clamp(30px, 6vw, 48px);
  }

  .ss-hero__media {
    left: 0;
    width: auto;
    background-position: center 20%;
    -webkit-mask-image: none;
            mask-image: none;
  }

  .ss-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(244, 237, 231, 0) 0%,
      rgba(244, 237, 231, .12) 14%,
      rgba(244, 237, 231, .72) 26%,
      var(--ss-cream) 34%,
      var(--ss-cream) 100%
    );
  }

  .ss-hero__inner { padding-top: clamp(180px, 30vh, 300px); }

  .ss-hero__content {
    max-width: 460px;
    margin: 0 auto;
  }

  .ss-bar {
    padding: 26px clamp(18px, 5vw, 44px);
  }

  .ss-bar__inner {
    flex-direction: column;
    gap: 20px;
  }

  .ss-bar__features {
    width: 100%;
    gap: 14px;
  }

  /* Only the rule between the features and the script turns horizontal here;
     the feature row itself is still side-by-side. */
  .ss-bar__rule--block {
    width: 100%;
    min-height: 0;
    height: 1px;
    align-self: auto;
  }

  .ss-bar__features .ss-bar__rule { min-height: 38px; }

  .ss-bar__script { text-align: center; }
}

/* Phone */
@media (max-width: 575.98px) {
  /* Pixel stops, not percentages: the banner height must not depend on how
     tall the hero happens to be, or the logo lands on top of the photo. */
  .ss-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(244, 237, 231, 0) 0,
      rgba(244, 237, 231, .08) 95px,
      rgba(244, 237, 231, .62) 205px,
      var(--ss-cream) 275px,
      var(--ss-cream) 100%
    );
  }

  .ss-hero__inner { padding-top: 288px; }

  .ss-brand__mark { width: 86px; }
  .ss-brand__name { font-size: 20px; letter-spacing: .18em; text-indent: .18em; }
  .ss-brand__rule { width: 140px; }

  .ss-headline { font-size: min(10.2vw, 46px); letter-spacing: .025em; text-indent: .025em; }

  /* Let the copy wrap naturally instead of at the desktop line breaks */
  .ss-lede br { display: none; }
  .ss-lede { max-width: 330px; font-size: 13.5px; line-height: 1.72; }

  .ss-legend { gap: 7px; font-size: 9px; letter-spacing: .13em; }
  .ss-legend__item svg { width: 13px; height: 13px; }

  .ss-input { height: 46px; font-size: 16px; } /* 16px stops iOS zoom-on-focus */
  .ss-submit { max-width: 100%; height: 44px; letter-spacing: .15em; text-indent: .15em; }

  .ss-bar__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ss-bar__features .ss-bar__rule {
    width: 100%;
    min-height: 0;
    height: 1px;
    align-self: auto;
  }

  .ss-feature { width: 100%; flex: 0 0 auto; }
  .ss-feature__label { font-size: 10px; letter-spacing: .12em; }

  .ss-bar__script { font-size: 19px; }
}

/* Short landscape phones — stop the fold from swallowing the button */
@media (max-height: 620px) and (min-width: 992px) {
  .ss-hero { padding: 24px 0; }
  .ss-brand { margin-bottom: 14px; }
  .ss-headline { font-size: clamp(38px, 4.6vw, 56px); }
  :root { --ss-bar-height: 104px; }
}

@media (prefers-reduced-motion: reduce) {
  .ss-reveal { opacity: 1; transform: none; animation: none; }
  * { transition-duration: .01ms !important; }
}

/* Print */
@media print {
  .ss-hero__media, .ss-hero__scrim { display: none; }
  .ss-bar { background: none; color: #000; }
}
