
/* =========================================
   DADSCOMPANY — BRAND FOUNDATION
   Step 2A
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');


/* -----------------------------------------
   1. BRAND TOKENS
   ----------------------------------------- */

/*:root {
  --ivory: #F5F1EA;
  --ink: #111111;
  --navy: #1D2833;
  --tobacco: #5A493D;
  --olive: #3F4A37;
  --white: #FFFFFF;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;

  --page-padding: 38px;
  --max-width: 1440px;
}*/
:root {
  /* =========================================
     DADSCOMPANY — PETROL / CLAY PALETTE
     ========================================= */

  /* Main canvas */
  --ivory: #f5f1E8;

  /* Primary brand dark */
  --ink: #12383A;

  /* Dark cinematic sections */
  --navy: #0D292B;

  /* Warm supporting neutral */
  --tobacco: #D8D0C4;

  /* Restrained accent */
  --olive: #B9624C;

  /* Light text on dark backgrounds */
  --white: #FFFFFF;


  /* Typography */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;


  /* Layout */
  --page-padding: 38px;
  --max-width: 1440px;
}

/* -----------------------------------------
   2. RESET
   ----------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* -----------------------------------------
   3. BASIC TYPOGRAPHY
   ----------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.92;
}

p {
  max-width: 60ch;
}


/* -----------------------------------------
   4. PAGE STRUCTURE
   ----------------------------------------- */

.page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.section {
  width: 100%;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}


/* -----------------------------------------
   5. SMALL LABELS
   ----------------------------------------- */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* -----------------------------------------
   6. BUTTON / TEXT LINKS
   ----------------------------------------- */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.text-link:hover {
  gap: 17px;
  opacity: 0.65;
}


/* -----------------------------------------
   7. RESPONSIVE FOUNDATION
   ----------------------------------------- */

@media (max-width: 900px) {
  :root {
    --page-padding: 24px;
  }
}

@media (max-width: 600px) {
  :root {
    --page-padding: 18px;
  }

  .eyebrow {
    font-size: 9px;
  }
}
/* =========================================
   DADSCOMPANY — NAVIGATION
   Step 2B
   ========================================= */

.site-header {
  width: 100%;
  height: 76px;

  padding-left: var(--page-padding);
  padding-right: var(--page-padding);

  display: flex;
  align-items: center;

  border-bottom: 1px solid rgba(17, 17, 17, 0.15);

  position: relative;
  z-index: 10;
}


/* -----------------------------------------
   BRAND
   ----------------------------------------- */

.brand {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.brand-logo {
  width: 112px;
  height: auto;

  display: block;
}


/* -----------------------------------------
   MAIN NAVIGATION
   ----------------------------------------- */

.main-nav {
  display: flex;
  align-items: center;

  gap: 38px;

  margin-left: 64px;
}

.main-nav a,
.nav-link,
.nav-cta {
  font-family: var(--font-sans);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.17em;
  text-transform: uppercase;

  white-space: nowrap;

  transition: opacity 0.25s ease;
}

.main-nav a:hover,
.nav-link:hover {
  opacity: 0.5;
}


/* -----------------------------------------
   RIGHT SIDE
   ----------------------------------------- */

.nav-right {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 34px;
}


/* -----------------------------------------
   KEEP ME POSTED
   ----------------------------------------- */

.nav-cta {
  height: 100%;

  min-width: 135px;

  padding: 0 0 8px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--ink);

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.nav-cta:hover {
  opacity: 0.6;
}

.nav-arrow {
  font-size: 17px;
  font-weight: 400;

  margin-left: 12px;

  transition: transform 0.3s ease;
}

.nav-cta:hover .nav-arrow {
  transform: translateX(4px);
}


/* -----------------------------------------
   TEMPORARY MAIN CONTENT
   ----------------------------------------- */

.temporary-section {
  min-height: calc(100vh - 76px);

  padding:
    80px
    var(--page-padding);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.temporary-section h1 {
  margin-top: 20px;

  font-size: clamp(70px, 10vw, 150px);

  max-width: 900px;
}


/* -----------------------------------------
   MOBILE NAVIGATION
   ----------------------------------------- */

@media (max-width: 900px) {

  .site-header {
    height: 68px;
  }

  .main-nav {
    gap: 20px;
    margin-left: 35px;
  }

  .nav-right {
    gap: 20px;
  }

  .brand-logo {
    width: 95px;
  }

}


@media (max-width: 700px) {

  .site-header {
    height: auto;
    min-height: 68px;

    padding-top: 16px;
    padding-bottom: 16px;

    flex-wrap: wrap;
    gap: 18px;
  }

  .main-nav {
    order: 3;

    width: 100%;

    margin-left: 0;

    gap: 22px;

    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    min-width: auto;
    gap: 10px;
  }

  .temporary-section {
    min-height: calc(100vh - 68px);

    padding-top: 60px;
    padding-bottom: 60px;
  }

}

/* =========================================
   DADSCOMPANY — HERO
   Step 3
   ========================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 42% 58%;
  width: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0) 0%,
    rgba(245, 241, 232, 0.18) 35%,
    rgba(245, 241, 232, 0.55) 72%,
    rgba(245, 241, 232, 0.92) 100%
  );
}


/* -----------------------------------------
   HERO CONTENT
   ----------------------------------------- */

.hero-content {
  padding:
    45px
    var(--page-padding)
    80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-title {
  margin-top: 22px;

  font-size: clamp(72px, 8vw, 128px);

  letter-spacing: -0.035em;

  max-width: 650px;
}

.hero-title em {
  font-style: italic;
}


/* -----------------------------------------
   HERO DESCRIPTION
   ----------------------------------------- */

.hero-description {
  margin-top: 38px;

  max-width: 390px;

  font-family: var(--font-sans);

  font-size: 14px;
  line-height: 1.65;

  color: rgba(17, 17, 17, 0.72);
}


/* -----------------------------------------
   HERO MESSAGE
   ----------------------------------------- */

.hero-message {
  margin-top: 34px;

  font-family: var(--font-serif);

  font-size: 17px;

  line-height: 1.35;
}

.hero-message p {
  max-width: none;
}

.hero-disagree {
  margin-top: 4px;

  font-family: var(--font-sans);

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.08em;

  color: var(--olive)
}


/* -----------------------------------------
   HERO CTA
   ----------------------------------------- */

.hero-cta {
  margin-top: 42px;

  display: inline-flex;
  align-items: center;

  gap: 18px;

  padding-bottom: 10px;

  border-bottom: 1px solid var(--ink);

  font-family: var(--font-sans);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.hero-cta:hover {
  gap: 25px;
  opacity: 0.6;
}


/* -----------------------------------------
   HERO IMAGE
   ----------------------------------------- */

.hero-image {
  min-height: calc(100vh - 76px);

  padding: 0;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;

  min-height: calc(100vh - 76px);

  background: VAR(--tobacco);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: rgba(17, 17, 17, 0.45);

  font-family: var(--font-sans);

  text-transform: uppercase;

  letter-spacing: 0.16em;

  font-size: 10px;
}

.hero-image-placeholder small {
  margin-top: 10px;

  font-size: 8px;

  letter-spacing: 0.12em;

  opacity: 0.7;
}


/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr 1fr;

    min-height: calc(100vh - 68px);
  }

  .hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero-title {
    font-size: clamp(58px, 8vw, 90px);
  }

  .hero-image,
  .hero-image-placeholder {
    min-height: calc(100vh - 68px);
  }

}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 700px) {

  .hero {
    display: flex;
    flex-direction: column;

    min-height: auto;
  }

  .hero-image {
    order: -1;

    width: 100%;

    height: 58vh;

    min-height: 420px;
  }

  .hero-image-placeholder {
    min-height: 0;

    height: 100%;
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: clamp(58px, 16vw, 88px);
  }

  .hero-description {
    margin-top: 30px;

    font-size: 13px;
  }

  .hero-message {
    margin-top: 30px;

    font-size: 16px;
  }

  .hero-cta {
    margin-top: 36px;
  }

}
/* =========================================
   SECTION 02 — THE IDEA
   FULL-BLEED IMAGE
   ========================================= */

.time-section {
  position: relative;

  width: 100%;

  min-height: 100svh;

  overflow: hidden;

  background: var(--ivory);
}



/* -----------------------------------------
   FULL-BLEED IMAGE
   ----------------------------------------- */

.time-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background: var(--stone);
}

.time-photo {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: 56% center;

  transform: scale(1.04);

  transform-origin: center center;

  filter: contrast(1.03) saturate(0.96);

  transition:
    transform 1.8s cubic-bezier(0.2, 0.65, 0.2, 1);
}


/* -----------------------------------------
   OVERLAY
   ----------------------------------------- */

.time-overlay {
  position: relative;

  min-height: 100svh;

  z-index: 2;
}


/* -----------------------------------------
   ATMOSPHERIC IVORY FADE
   ----------------------------------------- */

.time-atmosphere {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
    90deg,
    rgba(245, 241, 232, 0.96) 0%,
    rgba(245, 241, 232, 0.84) 18%,
    rgba(245, 241, 232, 0.60) 34%,
    rgba(245, 241, 232, 0.30) 48%,
    rgba(245, 241, 232, 0.08) 58%,
    rgba(245, 241, 232, 0) 67%
    )
}


/* -----------------------------------------
   CONTENT
   ----------------------------------------- */

.time-content {
  position: relative;

  z-index: 3;

  min-height: 100svh;

  width: 55%;

  padding:
    12vh
    var(--page-padding)
    10vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;
}


/* -----------------------------------------
   EYEBROW
   ----------------------------------------- */

.time-eyebrow {
  opacity: 0.7;
}


/* -----------------------------------------
   HEADLINE
   ----------------------------------------- */

.time-title {
  margin-top: 30px;

  font-size: clamp(66px, 7.6vw, 118px);

  line-height: 0.90;

  letter-spacing: -0.045em;

  max-width: 690px;

  opacity: 1;

  transform: translateY(0);

  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.time-title em {
  font-style: italic;
}


/* -----------------------------------------
   MEMORY LINE
   ----------------------------------------- */

.time-memory {
  margin-top: 26px;

  font-family: var(--font-sans);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.18em;

  line-height: 1.4;

  text-transform: uppercase;

  color: var(--olive);

  opacity: 1;

  transform: translateY(0);

  transition:
    opacity 0.7s ease 0.25s,
    transform 0.7s ease 0.25s;
}


/* -----------------------------------------
   CLOSING STATEMENT
   ----------------------------------------- */

.time-closing {
  margin-top: 105px;

  font-family: var(--font-sans);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.17em;

  line-height: 1.7;

  text-transform: uppercase;

  color: var(--petrol);

  opacity: 0.72;

  transform: translateY(16px);

  transition:
    opacity 0.7s ease 0.55s,
    transform 0.7s ease 0.55s;
}


/* -----------------------------------------
   ACTIVE / REVEALED STATE
   ----------------------------------------- */

.time-section.is-visible .time-photo {
  transform: scale(1);
}

.time-section.is-visible .time-title,
.time-section.is-visible .time-memory,
.time-section.is-visible .time-closing {
  opacity: 1;

  transform: translateY(0);
}


/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 900px) {

  .time-atmosphere {
    background:
      linear-gradient(
        90deg,
        rgba(245, 241, 232, 0.97) 0%,
        rgba(245, 241, 232, 0.84) 22%,
        rgba(245, 241, 232, 0.55) 42%,
        rgba(245, 241, 232, 0.12) 67%,
        rgba(245, 241, 232, 0) 78%
      );
  }

  .time-content {
    width: 62%;
  }

  .time-title {
    font-size: clamp(58px, 8.5vw, 94px);
  }

}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 700px) {

  .time-section {
    min-height: 100svh;
  }

  .time-image {
    height: 100%;
  }

  .time-photo {
    object-position: 62% center;
  }

  .time-atmosphere {
    background:
      linear-gradient(
        180deg,
        rgba(245, 241, 232, 0.88) 0%,
       rgba(245, 241, 232, 0.58) 18%,
       rgba(245, 241, 232, 0.16) 40%,
       rgba(245, 241, 232, 0) 60%
      );
  }

  .time-content {
    width: 100%;

    min-height: 100svh;

    padding:
      80px
      var(--page-padding)
      70px;

    justify-content: flex-start;
  }

  .time-title {
    margin-top: 24px;

    font-size: clamp(56px, 16vw, 88px);

    max-width: 95%;
  }

  .time-memory {
    margin-top: 24px;

    font-size: 10px;
  }

  .time-closing {
    margin-top: auto;

    margin-bottom: 5px;
  }

}


/* -----------------------------------------
   REDUCED MOTION
   ----------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .time-photo,
  .time-title,
  .time-memory,
  .time-closing {
    transition: none;
    transform: none;
  }

}

/* =========================================
   SECTION 03 — THE MOMENT
   ========================================= */



.moment-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--petrol-deep);
}

.moment-image {
  
  width: 100%;
  overflow: hidden;
}

.moment-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

/* -----------------------------------------
   COPY OVER IMAGE
   ----------------------------------------- */

.moment-copy {
  position: absolute;

  left: var(--page-padding);
  bottom: 70px;

  z-index: 2;

  color: var(--white);
}

.moment-copy .eyebrow {
  opacity: 0.65;

  margin-bottom: 25px;
}

.moment-copy h2 {
  font-size: clamp(58px, 7vw, 110px);

  letter-spacing: -0.035em;

  max-width: 750px;
}

.moment-subtitle {
  margin-top: 28px;

  font-family: var(--font-serif);

  font-size: 21px;

  font-style: italic;

  opacity: 0.85;
}


/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 900px) {

  .moment-image {
    height: 85vh;
  }

  .moment-copy {
    bottom: 50px;
  }

  .moment-copy h2 {
    font-size: clamp(52px, 8vw, 82px);
  }

}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 700px) {

  .moment-section {
    min-height: auto;
  }

  .moment-image {
    height: 72vh;

    min-height: 500px;
  }

  .moment-copy {
    left: var(--page-padding);
    right: var(--page-padding);
    bottom: 40px;
  }

  .moment-copy .eyebrow {
    margin-bottom: 18px;
  }

  .moment-copy h2 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .moment-subtitle {
    margin-top: 20px;

    font-size: 17px;
  }

}
/* =========================================
   SECTION 04 — WHAT WE MAKE
   ========================================= */

.make-section {
  width: 100%;

  min-height: 100svh;

  box-sizing: border-box;

  padding:
    120px
    var(--page-padding)
    65px;

  background: var(--ivory);

  display: flex;

  flex-direction: column;
}


/* -----------------------------------------
   HEADING
   ----------------------------------------- */

.make-heading {
  width: 100%;
}

.make-heading h2 {
  margin: 0;

  max-width: 760px;

  font-size: clamp(68px, 8vw, 124px);

  line-height: 0.91;

  letter-spacing: -0.045em;

  font-weight: 400;
}

.make-heading h2 em {
  font-style: italic;
}


/* -----------------------------------------
   PRINCIPLES
   ----------------------------------------- */

.make-grid {
  width: 100%;

  margin-top: 85px;

  padding-top: 35px;

  border-top:
    1px solid rgba(17, 17, 17, 0.28);

  display: flex;

  flex-direction: column;
}


/* -----------------------------------------
   INDIVIDUAL PRINCIPLE
   ----------------------------------------- */

.make-card {
  display: block;

  width: 100%;
}

.make-card h3 {
  margin: 0;

  font-family: var(--font-serif);

  font-size: clamp(30px, 2.5vw, 36px);

  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.025em;
}

.make-card p {
  margin:
    17px
    0
    0;

  max-width: 290px;

  font-family: var(--font-sans);

  font-size: 13px;

  line-height: 1.7;

  color: rgba(17, 17, 17, 0.62);
}


/* -----------------------------------------
   STAGGER
   ----------------------------------------- */

.make-card-01 {
  padding-left: 0;
}

.make-card-02 {
  padding-left: 22%;
}

.make-card-03 {
  padding-left: 44%;
}


/* -----------------------------------------
   SPACING BETWEEN PRINCIPLES
   ----------------------------------------- */

.make-card-02 {
  margin-top: 55px;
}

.make-card-03 {
  margin-top: 55px;
}


/* -----------------------------------------
   FOOTER
   ----------------------------------------- */

.make-footer {
  width: 100%;

  margin-top: 65px;

  padding-top: 22px;

  border-top:
    1px solid rgba(17, 17, 17, 0.28);

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.make-footer p {
  margin: 0;

  font-family: var(--font-sans);

  font-size: 12px;

  line-height: 1.4;

  color: rgba(17, 17, 17, 0.62);
}


/* -----------------------------------------
   TEXT LINK
   ----------------------------------------- */

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 16px;

  padding-bottom: 7px;

  border-bottom:
    1px solid var(--ink);

  font-family: var(--font-sans);

  font-size: 10px;

  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.text-link:hover {
  gap: 23px;

  opacity: 0.6;
}

.text-link span {
  font-size: 15px;

  font-weight: 400;

  line-height: 0.8;
}


/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 1000px) {

  .make-section {
    padding-top: 105px;

    padding-bottom: 60px;
  }

  .make-heading h2 {
    font-size: clamp(60px, 8.5vw, 90px);
  }

  .make-grid {
    margin-top: 75px;

    padding-top: 30px;
  }

  .make-card-02 {
    padding-left: 18%;
  }

  .make-card-03 {
    padding-left: 36%;
  }

  .make-card-02,
  .make-card-03 {
    margin-top: 45px;
  }

  .make-card h3 {
    font-size: 29px;
  }

  .make-footer {
    margin-top: 55px;
  }

}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 700px) {

  .make-section {
    min-height: auto;

    padding:
      95px
      var(--page-padding)
      75px;
  }


  /* Heading */

  .make-heading h2 {
    max-width: 100%;

    font-size: clamp(58px, 16vw, 84px);

    line-height: 0.9;

    letter-spacing: -0.045em;
  }


  /* Principles */

  .make-grid {
    margin-top: 70px;

    padding-top: 28px;
  }

  .make-card-01,
  .make-card-02,
  .make-card-03 {
    padding-left: 0;
  }

  .make-card-02,
  .make-card-03 {
    margin-top: 48px;
  }

  .make-card h3 {
    font-size: 32px;
  }

  .make-card p {
    max-width: 290px;

    margin-top: 16px;

    font-size: 13px;

    line-height: 1.7;
  }


  /* Footer */

  .make-footer {
    margin-top: 55px;

    padding-top: 22px;

    flex-direction: column;

    align-items: flex-start;

    gap: 24px;
  }

}


/* -----------------------------------------
   SMALL MOBILE
   ----------------------------------------- */

@media (max-width: 380px) {

  .make-section {
    padding-top: 85px;
  }

  .make-heading h2 {
    font-size: 56px;
  }

  .make-card h3 {
    font-size: 29px;
  }

}
/* =========================================
   SECTION 05 — COMING SOON
   ========================================= */
/* =========================================
   SECTION 05 — COMING SOON
   ========================================= */

.launch-section {
  width: 100%;

  min-height: 90vh;

  padding:
    140px
    var(--page-padding)
    100px;

  background: var(--navy);

  color: var(--ivory);

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}


/* -----------------------------------------
   CONTENT
   ----------------------------------------- */

.launch-content {
  max-width: 850px;
}

.launch-content .eyebrow {
  color: var(--ivory);

  opacity: 0.55;
}

.launch-content h2 {
  margin-top: 30px;

  font-size: clamp(75px, 9vw, 145px);

  line-height: 0.92;

  letter-spacing: -0.045em;
}

.launch-content h2 em {
  font-style: italic;
}

.launch-description {
  max-width: 420px;

  margin-top: 45px;

  font-size: 14px;

  line-height: 1.7;

  color: rgba(245, 241, 234, 0.7);
}


/* -----------------------------------------
   SIGNUP FORM
   ----------------------------------------- */

.signup-form {
  width: min(100%, 520px);

  margin-top: 45px;

  display: flex;

  align-items: stretch;

  border-bottom:
    1px solid rgba(245, 241, 234, 0.65);
}

.signup-form input {
  flex: 1;

  min-width: 0;

  padding:
    16px
    0;

  border: none;

  outline: none;

  background: transparent;

  color: var(--ivory);

  font-family: var(--font-sans);

  font-size: 13px;
}

.signup-form input::placeholder {
  color: rgba(245, 241, 234, 0.45);
}

.signup-form button {
  flex-shrink: 0;

  padding:
    16px
    0
    16px
    25px;

  border: none;

  background: transparent;

  color: var(--ivory);

  font-family: var(--font-sans);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  gap: 15px;
}

.signup-form button span:last-child {
  font-size: 16px;

  font-weight: 400;

  transition:
    transform 0.3s ease;
}

.signup-form button:hover span:last-child {
  transform: translateX(5px);
}

.form-note {
  margin-top: 14px;

  font-size: 9px;

  letter-spacing: 0.08em;

  color: rgba(245, 241, 234, 0.35);
}


/* -----------------------------------------
   BRAND MARK
   ----------------------------------------- */

.launch-mark {
  width: 100%;

  margin-top: 100px;

  padding-top: 25px;

  border-top:
    1px solid rgba(245, 241, 234, 0.2);

  display: flex;

  align-items: flex-end;

  justify-content: flex-start;
}


/* -----------------------------------------
   DADSCOMPANY LOGO
   ----------------------------------------- */

.launch-logo {
  display: block;

  width: 250px;

  height: auto;

  color: var(--ivory);
}


/* -----------------------------------------
   ACCESSIBILITY
   ----------------------------------------- */

.visually-hidden {
  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 700px) {

  .launch-section {
    min-height: 85vh;

    padding-top: 100px;

    padding-bottom: 60px;
  }


  .launch-content h2 {
    font-size: clamp(58px, 16vw, 88px);
  }


  .launch-description {
    margin-top: 35px;

    max-width: 330px;

    font-size: 13px;
  }


  .signup-form {
    margin-top: 35px;

    display: flex;

    flex-direction: column;

    border-bottom: none;
  }


  .signup-form input {
    width: 100%;

    border-bottom:
      1px solid rgba(245, 241, 234, 0.5);

    padding-top: 15px;

    padding-bottom: 15px;
  }


  .signup-form button {
    align-self: flex-start;

    padding-left: 0;

    padding-top: 20px;

    padding-bottom: 10px;
  }


  .launch-mark {
    margin-top: 80px;

    padding-top: 22px;
  }


  .launch-logo {
    width: 200px;
  }

}
/* =========================================
   HERO — REAL PHOTOGRAPHY
   ========================================= */

.hero-photo {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  /* Very subtle brand colour treatment */
  filter: none;
}


/* -----------------------------------------
   HERO IMAGE BLEND
   ----------------------------------------- */

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  bottom: 0;

  width: 11%;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      var(--ivory) 0%,
      rgba(245, 241, 232, 0.92) 15%,
      rgba(245, 241, 232, 0.55) 45%,
      rgba(245, 241, 232, 0) 100%
    );
}
@media (max-width: 700px) {
    .hero-image::before {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 18%;

    background:
      linear-gradient(
        0deg,
        var(--ivory) 0%,
        rgba(245, 241, 232, 0.85) 25%,
        rgba(245, 241, 232, 0) 100%
      );
  }}