:root {
  --ink: #11120f;
  --paper: #f4f1e9;
  --cream: #e7dfcf;
  --soft-white: #fbfaf7;
  --gold: #b58c50;
  --orange: #e96f39;
  --muted: #686861;
  --line: rgba(17, 18, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sora", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.announcement {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  color: #f8f5ef;
  background: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 233, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  width: max-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.9;
  letter-spacing: 0.22em;
}

.brand strong {
  font-size: 22px;
  font-weight: 800;
}

.brand span {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: none;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 7vw, 110px);
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.62), transparent 27%),
    linear-gradient(125deg, #eee9de 0 50%, #d4c4ad 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 18px 0 26px;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 620px;
  margin: 0;
  color: #51514c;
  font-size: 16px;
  line-height: 1.75;
}

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

.primary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.primary-button {
  color: white;
  background: var(--ink);
}

.primary-button:hover,
.light-button:hover {
  transform: translateY(-2px);
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.hero-stage {
  position: relative;
  width: min(100%, 650px);
  min-height: 580px;
  justify-self: end;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(17, 18, 15, 0.16);
  border-radius: 50%;
}

.orbit-one {
  inset: 3% 4% 9% 8%;
  transform: rotate(12deg);
}

.orbit-two {
  inset: 12% 13% 19% 18%;
  transform: rotate(-20deg);
}

.stage-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 15, 0.15);
  box-shadow: 0 28px 65px rgba(42, 34, 22, 0.14);
}

.stage-card p,
.stage-card strong,
.stage-card small {
  display: block;
  margin: 0;
}

.stage-card p {
  font-size: 8px;
  letter-spacing: 0.22em;
}

.stage-card strong {
  margin-top: 5px;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.stage-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.services-mini {
  z-index: 2;
  top: 7%;
  right: 2%;
  width: 58%;
  min-height: 265px;
  padding: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.75), transparent),
    #e3d8c5;
  transform: rotate(5deg);
}

.mini-service-list {
  display: grid;
  gap: 0;
  margin-top: 27px;
}

.mini-service-list > span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(17, 18, 15, 0.14);
}

.mini-service-list strong {
  margin: 0;
  color: var(--ink);
  font-size: clamp(13px, 1.35vw, 17px);
}

.mini-service-list small {
  margin: 0;
  white-space: nowrap;
}

.fragrance-mini {
  z-index: 3;
  bottom: 3%;
  left: 1%;
  width: 57%;
  min-height: 390px;
  background: white;
  transform: rotate(-5deg);
}

.fragrance-mini img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center 45%;
}

.fragrance-mini div {
  padding: 24px 26px;
}

.stage-seal {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 10%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.17em;
}

.signal-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.signal-icon i {
  position: absolute;
  border: 1.5px solid currentColor;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.signal-icon i:nth-child(1) {
  width: 20px;
  height: 20px;
}

.signal-icon i:nth-child(2) {
  width: 42px;
  height: 42px;
}

.signal-icon i:nth-child(3) {
  width: 66px;
  height: 66px;
}

.divisions-section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.about-copy h2,
.fragrance-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.division-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(17, 18, 15, 0.42);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.sims-card {
  background:
    radial-gradient(circle at 76% 18%, rgba(233, 111, 57, 0.2), transparent 28%),
    #dcd2c0;
}

.division-icon {
  position: relative;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin: 28px auto 58px;
}

.sim-icon {
  color: var(--orange);
}

.sim-icon::before {
  content: "";
  width: 92px;
  height: 112px;
  border: 3px solid currentColor;
  border-radius: 10px;
  clip-path: polygon(0 0, 70% 0, 100% 24%, 100% 100%, 0 100%);
}

.sim-icon span {
  position: absolute;
  width: 38px;
  height: 48px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.card-kicker {
  margin: 0 0 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.division-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.division-card > p:not(.card-kicker) {
  max-width: 570px;
  margin: 22px 0;
  color: #4f4e49;
  font-size: 14px;
  line-height: 1.75;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 34px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 12px;
  border: 1px solid rgba(17, 18, 15, 0.2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phones-card {
  background:
    radial-gradient(circle at 78% 15%, rgba(181, 140, 80, 0.25), transparent 28%),
    #e6dece;
}

.phone-icon {
  color: var(--gold);
}

.phone-icon::before {
  content: "";
  width: 78px;
  height: 138px;
  border: 3px solid currentColor;
  border-radius: 17px;
}

.phone-icon::after {
  content: "";
  position: absolute;
  bottom: 22px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.postpaid-card {
  background:
    radial-gradient(circle at 78% 16%, rgba(82, 102, 108, 0.18), transparent 30%),
    #d8dedc;
}

.plan-icon {
  grid-template-columns: repeat(3, 18px);
  align-items: end;
  gap: 12px;
  color: #52666c;
}

.plan-icon span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: currentColor;
}

.plan-icon span:nth-child(1) {
  height: 42px;
}

.plan-icon span:nth-child(2) {
  height: 78px;
}

.plan-icon span:nth-child(3) {
  height: 116px;
}

.fragrance-card {
  display: flex;
  flex-direction: column;
  color: #f8f5ee;
  background: var(--ink);
}

.fragrance-card .card-number {
  color: rgba(255, 255, 255, 0.45);
}

.fragrance-card-image {
  height: 275px;
  margin: -58px -58px 45px;
  overflow: hidden;
}

.fragrance-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.9;
}

.fragrance-card > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.card-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 18px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--soft-white);
}

.about-copy {
  align-self: center;
}

.about-copy p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.value-list article {
  display: grid;
  grid-template-columns: 58px 0.7fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}

.value-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.value-list span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.value-list h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.fragrance-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(181, 140, 80, 0.3), transparent 25%),
    var(--ink);
}

.fragrance-cta h2 {
  max-width: 850px;
}

.light-button {
  flex: 0 0 auto;
  color: var(--ink);
  background: white;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 56px clamp(24px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 10px;
}

footer small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 35;
    top: 116px;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 25px 45px rgba(17, 18, 15, 0.14);
    transition: max-height 0.3s ease;
  }

  .mobile-menu.open {
    max-height: calc(100vh - 116px);
  }

  .mobile-menu nav {
    display: grid;
    padding: 22px;
  }

  .mobile-menu a {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .mobile-menu-cta {
    margin-top: 15px;
    color: white;
    background: var(--ink);
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 82px;
  }

  .hero-stage {
    width: min(100%, 680px);
    justify-self: center;
  }

  .section-heading,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 70px;
  }
}

@media (max-width: 720px) {
  .announcement {
    gap: 8px;
    padding-inline: 12px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .site-header {
    height: 70px;
  }

  .mobile-menu {
    top: 104px;
  }

  .hero {
    padding: 60px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(53px, 16vw, 75px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .primary-button {
    width: 100%;
  }

  .text-link {
    width: max-content;
  }

  .hero-stage {
    min-height: 470px;
  }

  .services-mini {
    right: 0;
    width: 68%;
    min-height: 210px;
    padding: 26px;
  }

  .mini-service-list {
    margin-top: 18px;
  }

  .mini-service-list > span {
    padding: 9px 0;
  }

  .fragrance-mini {
    width: 68%;
    min-height: 330px;
  }

  .fragrance-mini img {
    height: 225px;
  }

  .fragrance-mini div {
    padding: 18px;
  }

  .stage-card strong {
    font-size: 13px;
  }

  .stage-seal {
    right: 0;
    bottom: 11%;
    width: 72px;
    height: 72px;
    font-size: 10px;
  }

  .divisions-section,
  .about-section {
    padding-inline: 20px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 45px;
  }

  .section-heading h2,
  .about-copy h2,
  .fragrance-cta h2 {
    font-size: 42px;
  }

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

  .division-card {
    min-height: 610px;
    padding: 30px;
  }

  .division-icon {
    margin-bottom: 55px;
  }

  .fragrance-card-image {
    height: 250px;
    margin: -30px -30px 38px;
  }

  .value-list article {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .value-list p {
    grid-column: 2;
  }

  .fragrance-cta {
    align-items: stretch;
    flex-direction: column;
    padding-inline: 20px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-inline: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 13px;
  }

  footer small {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .announcement span:nth-child(2),
  .announcement span:nth-child(3) {
    display: none;
  }

  .hero-stage {
    min-height: 430px;
  }

  .services-mini,
  .fragrance-mini {
    width: 73%;
  }

  .fragrance-mini {
    min-height: 310px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
