:root {
  --navy: #2F3E5C;
  --navy-deep: #263550;
  --cream: #F8F5EE;
  --muted: rgba(248, 245, 238, 0.72);
  --muted-soft: rgba(248, 245, 238, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--cream);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  font-family: "Montserrat", sans-serif;
  text-rendering: geometricPrecision;
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0 14px;
  position: relative;
  z-index: 3;
}

.brand {
  width: 196px;
  flex: 0 0 auto;
}

.brand img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 40px);
}

.nav-links a,
.footer-links a {
  color: rgba(248, 245, 238, 0.75);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--cream);
}

.nav-links .seller-link {
  color: rgba(248, 245, 238, 0.9);
}

main {
  min-height: 0;
  display: flex;
}

.simple-main {
  align-items: center;
  justify-content: flex-start;
}

.hero {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  padding: 8px 0 6px;
  position: relative;
}

.hero-copy {
  align-self: center;
  padding-bottom: 0;
  transform: translateY(-4.5vh);
  position: relative;
  z-index: 2;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.75rem, 4.2vw, 4.42rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.contact-panel h1 {
  font-size: clamp(2.05rem, 3.1vw, 3rem);
  color: rgba(248, 245, 238, 0.86);
}

.supporting-copy {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.text-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease, opacity 180ms ease;
}

.text-button:hover::after {
  transform: scaleX(0.58);
  opacity: 0.72;
}

.text-button.is-disabled {
  color: rgba(248, 245, 238, 0.56);
  cursor: default;
}

.text-button.is-disabled::after {
  opacity: 0.34;
}

.hero-visual {
  align-self: stretch;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: visible;
}

.phone-splash {
  width: min(288px, 28vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: rotate(-16deg) translate(-10px, 0);
  transform-origin: center;
  filter: drop-shadow(0 30px 48px rgba(11, 19, 32, 0.28));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 8px 0 18px;
  position: relative;
  z-index: 3;
}


.footer-links {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.76rem;
  text-align: right;
}

.page-shell-simple {
  min-height: 100vh;
}

.simple-main {
  align-items: center;
  justify-content: flex-start;
}

.contact-panel {
  width: min(680px, 100%);
  margin-left: clamp(0px, 11vw, 170px);
  padding: 34px 0 72px 34px;
  border-left: 1px solid rgba(248, 245, 238, 0.22);
  transform: translateY(-3vh);
}

.contact-panel h1 {
  max-width: none;
  margin: 0;
  white-space: normal;
}

.email-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.45rem, 4.65vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  border-bottom: 1px solid rgba(248, 245, 238, 0.62);
}

.contact-lede {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}



.faq-main {
  align-items: center;
}

.faq-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 34px 0 70px;
  transform: translateY(-2vh);
}

.faq-panel h1 {
  max-width: none;
  margin: 0 0 40px;
  white-space: normal;
  font-size: clamp(2rem, 3.45vw, 3.45rem);
}

.faq-list {
  border-top: 1px solid rgba(248, 245, 238, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(248, 245, 238, 0.2);
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 23px 0;
  color: rgba(248, 245, 238, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "▸";
  display: inline-block;
  color: rgba(248, 245, 238, 0.54);
  font-size: 0.78em;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::before {
  transform: rotate(90deg) translateX(1px);
}

.faq-list p {
  max-width: 650px;
  margin: -4px 0 24px 31px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-list details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 220ms ease, content-visibility 220ms ease allow-discrete;
}

.faq-list details[open]::details-content {
  block-size: auto;
}

@media (min-width: 1080px) {
  h1 {
    white-space: nowrap;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .brand {
    width: 176px;
  }

  .site-header {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .hero-copy {
    padding-bottom: 2vh;
  }

  h1 {
    font-size: clamp(2.55rem, 3.7vw, 3.9rem);
  }

  .phone-splash {
    width: min(260px, 25vw);
  }

  .site-footer {
    padding-bottom: 14px;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 34px, 650px);
    display: flex;
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 26px;
    padding-bottom: 20px;
  }

  .brand {
    width: 202px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  main {
    flex: 1;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 36px;
  }

  .hero-copy {
    text-align: center;
    padding-bottom: 0;
    transform: none;
  }

  h1,
  .supporting-copy {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    max-width: 560px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
    align-self: auto;
    overflow: hidden;
    max-height: 440px;
  }

  .phone-splash {
    width: min(310px, 82vw);
    transform: rotate(-10deg) translateY(12px);
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 12px;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 28px, 420px);
  }

  .site-header {
    gap: 20px;
  }

  .nav-links a,
  .footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2.62rem, 12.5vw, 3.52rem);
  }

  .supporting-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 17px;
    margin-top: 26px;
  }

  .hero-visual {
    max-height: 300px;
  }

  .phone-splash {
    width: min(252px, 78vw);
  }

  .footer-links {
    gap: 16px;
  }

  .faq-panel h1 {
    font-size: clamp(1.92rem, 9vw, 2.82rem);
  }

  .faq-list summary {
    gap: 12px;
  }

  .faq-list p {
    margin-left: 25px;
  }
}

@media (max-width: 900px) {
  .contact-panel {
    width: min(100%, 342px);
    margin: 0 auto;
    padding: 42px 0 58px 22px;
    border-left: 1px solid rgba(248, 245, 238, 0.2);
    text-align: left;
    transform: none;
  }

  .contact-panel h1 {
    font-size: clamp(2rem, 7.5vw, 3rem);
  }

  .email-link {
    max-width: 100%;
    font-size: clamp(1.72rem, 6.15vw, 3.35rem);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .contact-panel {
    width: min(100%, 318px);
    padding-left: 20px;
  }

  .email-link {
    font-size: clamp(1.62rem, 5.65vw, 2.2rem);
  }
}
