:root {
  --font-sans: "DM Sans";
  --font-script: "Allura";
  --ivory: #f8f4ed;
  --paper: #fffdf9;
  --rose: #c58e91;
  --rose-deep: #966266;
  --mauve: #79687f;
  --lavender: #a7a9c5;
  --lavender-soft: #e1dfeb;
  --sage: #9eab95;
  --sage-soft: #d9dfd3;
  --cocoa: #6d554e;
  --ink: #282526;
  --gold: #c9a650;
  --line: rgba(80, 63, 60, 0.2);
  --shadow: 0 30px 80px rgba(80, 63, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans), "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--paper);
  background: var(--rose-deep);
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 96px));
  min-height: 96px;
  border-bottom: 1px solid rgba(40, 37, 38, 0.15);
  transform: translateX(-50%);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-decoration: none;
}

.brand-main {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.brand-sub {
  margin-top: -5px;
  margin-left: 20px;
  color: var(--rose-deep);
  font-family: var(--font-script), cursive;
  font-size: 25px;
  line-height: 1;
  transform: rotate(-3deg);
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rose-deep);
  transition: right 260ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  padding: 12px 19px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 260ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(520px, 0.92fr);
  grid-template-rows: 1fr auto;
  gap: 32px 72px;
  align-items: center;
  min-height: 900px;
  padding: 150px max(6vw, calc((100vw - 1440px) / 2)) 62px;
  background:
    radial-gradient(circle at 83% 15%, rgba(197, 142, 145, 0.22), transparent 27rem),
    radial-gradient(circle at 48% 90%, rgba(167, 169, 197, 0.18), transparent 31rem),
    linear-gradient(135deg, #fbf8f3, #f2ece5);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--rose),
    var(--mauve),
    var(--lavender),
    var(--sage),
    var(--gold)
  );
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 680px;
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--cocoa);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 4.65vw, 76px);
  font-weight: 480;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.script-line {
  margin: 0;
  color: var(--rose-deep);
  font-family: var(--font-script), "Snell Roundhand", cursive;
  font-size: clamp(42px, 4.3vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.hero .script-line {
  width: fit-content;
  max-width: 510px;
  margin: 12px 4px 22px auto;
  font-size: clamp(42px, 3.6vw, 62px);
  text-align: right;
  transform: rotate(-2.5deg);
}

.hero-intro {
  max-width: 575px;
  margin: 0;
  color: rgba(40, 37, 38, 0.72);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    background 260ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--paper);
  background: var(--mauve);
  box-shadow: 0 14px 32px rgba(121, 104, 127, 0.2);
}

.button-primary:hover {
  background: #63546a;
  box-shadow: 0 18px 38px rgba(121, 104, 127, 0.28);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  font-weight: 400;
  transition: transform 250ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-art {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 620px;
}

.hero-orbit,
.contact-orbit {
  position: absolute;
  border: 1px solid rgba(109, 85, 78, 0.28);
  border-radius: 50%;
}

.hero-orbit.orbit-one {
  top: -10px;
  right: -150px;
  width: 610px;
  height: 610px;
}

.hero-orbit.orbit-two {
  top: 48px;
  right: -95px;
  width: 500px;
  height: 500px;
  border-color: rgba(201, 166, 80, 0.42);
}

.laptop {
  position: absolute;
  z-index: 2;
  top: 78px;
  right: 2px;
  width: min(100%, 630px);
  transform: rotate(1.2deg);
}

.laptop-lid {
  position: relative;
  padding: 15px 15px 18px;
  border: 7px solid #3f3b40;
  border-bottom-width: 12px;
  border-radius: 22px 22px 11px 11px;
  background: #504a51;
  box-shadow: 0 34px 70px rgba(70, 55, 58, 0.2);
}

.laptop-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1e1c1f;
  transform: translateX(-50%);
}

.laptop-screen {
  position: relative;
  height: 375px;
  overflow: hidden;
  border-radius: 9px;
  color: #302c2e;
  background:
    radial-gradient(circle at 82% 17%, rgba(197, 142, 145, 0.28), transparent 9rem),
    #fffdf9;
}

.sample-site-nav {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 15px;
  align-items: center;
  height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(109, 85, 78, 0.15);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-site-brand {
  color: var(--mauve);
  font-family: var(--font-script), cursive;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.sample-site-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
  min-height: 265px;
  padding: 28px 30px;
}

.sample-site-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sample-site-copy small,
.sample-site-card small,
.sample-site-card span,
.sample-site-footer {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sample-site-copy strong {
  max-width: 250px;
  margin: 10px 0 13px;
  color: var(--rose-deep);
  font-family: var(--font-script), cursive;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.sample-site-copy > span {
  font-size: 9px;
  font-weight: 600;
}

.sample-site-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 210px;
  border: 1px solid rgba(109, 85, 78, 0.26);
  border-radius: 105px 105px 18px 18px;
  background: rgba(248, 244, 237, 0.8);
  text-align: center;
}

.sample-site-card b {
  margin: 3px 0;
  color: var(--mauve);
  font-size: 58px;
  font-weight: 440;
  letter-spacing: -0.08em;
  line-height: 1;
}

.sample-site-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 15px 22px;
  border-top: 1px solid rgba(109, 85, 78, 0.15);
  color: var(--cocoa);
}

.sample-site-footer i {
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.laptop-base {
  width: 108%;
  height: 24px;
  margin-left: -4%;
  border-radius: 3px 3px 18px 18px;
  background: linear-gradient(180deg, #d7d1d2, #aaa4a7);
  box-shadow: 0 18px 28px rgba(70, 55, 58, 0.15);
}

.laptop-base::after {
  display: block;
  width: 100px;
  height: 6px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  content: "";
  background: #8e888b;
}

.screen-detail {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.detail-one {
  right: -16px;
  bottom: 54px;
  width: 220px;
  min-height: 112px;
  padding: 22px 24px;
  border-radius: 22px 22px 68px 22px;
  color: var(--paper);
  background: var(--mauve);
  transform: rotate(-2deg);
}

.detail-one span,
.detail-two small {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-one b {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.detail-two {
  bottom: 22px;
  left: 14px;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(109, 85, 78, 0.2);
  border-radius: 50%;
  background: var(--sage-soft);
  text-align: center;
  transform: rotate(4deg);
}

.tiny-monogram {
  color: var(--cocoa);
  font-family: var(--font-script), cursive;
  font-size: 54px;
  line-height: 1;
}

.hero-note {
  position: relative;
  z-index: 3;
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 340px;
  margin-top: 8px;
}

.hero-note span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(109, 85, 78, 0.35);
  border-radius: 50%;
  font-size: 9px;
}

.hero-note p {
  margin: 0;
  color: var(--cocoa);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.manifesto,
.catalog,
.packages,
.portfolio,
.process,
.faq {
  padding: 140px max(6vw, calc((100vw - 1440px) / 2));
}

.manifesto {
  color: var(--paper);
  background: var(--cocoa);
}

.section-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.26);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12%;
  align-items: start;
  margin-top: 75px;
}

.manifesto-grid h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 67px);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.manifesto-grid h2 .manifesto-script {
  display: block;
  margin-top: 12px;
  color: #e3c1c2;
  font-family: var(--font-script), "Snell Roundhand", cursive;
  font-size: 1.03em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  transform: rotate(-1.5deg);
}

.manifesto-grid > div {
  padding-top: 9px;
}

.manifesto-grid p {
  margin: 0 0 20px;
  color: rgba(255, 253, 249, 0.72);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 100px;
}

.values-grid article {
  position: relative;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 253, 249, 0.26);
}

.values-grid article > span {
  position: absolute;
  top: -13px;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--cocoa);
  background: #e3c1c2;
  font-size: 8px;
}

.values-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 520;
}

.values-grid p {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 253, 249, 0.67);
  font-size: 14px;
}

.catalog {
  background: var(--ivory);
}

.catalog-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 10%;
  align-items: end;
  max-width: 1200px;
  margin-bottom: 125px;
}

.section-script {
  width: fit-content;
  margin: 14px 0 0 auto;
  color: var(--rose-deep);
  font-family: var(--font-script), "Snell Roundhand", cursive;
  font-size: clamp(37px, 3.3vw, 53px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  transform: rotate(-2deg);
}

.catalog-script {
  position: absolute;
  top: 12px;
  right: 0;
  color: var(--mauve);
}

.catalog-intro .eyebrow {
  grid-column: 1 / -1;
}

.catalog-intro h2,
.packages-intro h2,
.portfolio-heading h2,
.partner-copy h2,
.process-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.25vw, 66px);
  font-weight: 460;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.catalog-intro > p:last-child,
.packages-intro > p,
.portfolio-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: rgba(40, 37, 38, 0.66);
}

.experience-group + .experience-group {
  margin-top: 130px;
}

.group-heading {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.group-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--cocoa);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.group-heading h3 {
  margin: -4px 0 5px;
  font-size: 30px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.group-heading p {
  max-width: 580px;
  margin: 0;
  color: rgba(40, 37, 38, 0.62);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.74);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.experience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.experience-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 255px;
  overflow: hidden;
  border-bottom: 1px solid rgba(109, 85, 78, 0.15);
}

.experience-preview::before,
.experience-preview::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.28;
}

.experience-preview::before {
  width: 215px;
  height: 215px;
}

.experience-preview::after {
  width: 165px;
  height: 165px;
}

.tone-1 .experience-preview {
  color: var(--cocoa);
  background: linear-gradient(145deg, #ead2d1, #f6ece7);
}

.tone-2 .experience-preview {
  color: #4e516c;
  background: linear-gradient(145deg, #d8d8e8, #eeeaf0);
}

.tone-3 .experience-preview {
  color: #586554;
  background: linear-gradient(145deg, #d4ddcf, #f0eee4);
}

.tone-4 .experience-preview {
  color: #72584d;
  background: linear-gradient(145deg, #e7d8cc, #f5eee5);
}

.preview-kicker {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-monogram {
  position: relative;
  z-index: 1;
  font-family: var(--font-script), cursive;
  font-size: 70px;
  line-height: 1;
}

.preview-rule {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 1px;
  margin: 7px 0 10px;
  background: currentColor;
}

.preview-caption {
  position: relative;
  z-index: 1;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-content {
  padding: 28px 28px 30px;
}

.experience-number {
  margin: 0 0 32px;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
}

.experience-content h4 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.experience-content > p:not(.experience-number) {
  min-height: 76px;
  margin: 0;
  color: rgba(40, 37, 38, 0.64);
  font-size: 14px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding: 7px 10px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cocoa);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-note {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 45px;
  align-items: center;
  margin-top: 110px;
  padding: 65px 70px;
  overflow: hidden;
  border-radius: 34px;
  color: var(--paper);
  background: var(--mauve);
}

.catalog-note::after {
  position: absolute;
  right: 7%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 50%;
  content: "";
}

.catalog-note .script-line {
  position: relative;
  z-index: 1;
  color: #f2cfd0;
  font-size: 48px;
}

.catalog-note > p:not(.script-line) {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0;
  color: rgba(255, 253, 249, 0.76);
}

.catalog-note .button {
  position: relative;
  z-index: 1;
}

.packages {
  background: #eee8e0;
}

.packages-intro,
.portfolio-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 13%;
  align-items: end;
  margin-bottom: 70px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 42px 38px 35px;
  border: 1px solid rgba(109, 85, 78, 0.22);
  border-radius: 210px 210px 28px 28px;
  background: rgba(255, 253, 249, 0.74);
}

.package-card.featured {
  color: var(--paper);
  background: var(--mauve);
  transform: translateY(-18px);
}

.package-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  padding: 7px 12px 6px;
  border-radius: 999px;
  color: var(--mauve);
  background: #f0d3d3;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.package-note {
  margin: 112px 0 8px;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.featured .package-note {
  color: #f0d3d3;
}

.package-card h3 {
  margin: 0 0 24px;
  font-size: 34px;
  font-weight: 480;
  letter-spacing: -0.045em;
  text-align: center;
}

.package-card > p:not(.package-note) {
  margin: 0;
  color: rgba(40, 37, 38, 0.66);
  text-align: center;
}

.featured > p:not(.package-note) {
  color: rgba(255, 253, 249, 0.72);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(109, 85, 78, 0.18);
  list-style: none;
}

.featured ul {
  border-color: rgba(255, 253, 249, 0.2);
}

.package-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.package-card li::before {
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(109, 85, 78, 0.18);
}

.featured .package-footer {
  border-color: rgba(255, 253, 249, 0.2);
}

.package-footer span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-footer a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
}

.alacarte {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 90px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.alacarte .script-line {
  font-size: 44px;
}

.alacarte h3 {
  margin: -5px 0 0;
  font-size: 24px;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.alacarte > p {
  max-width: 460px;
  margin: 0;
  color: rgba(40, 37, 38, 0.64);
}

.portfolio {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 65px 24px;
}

.portfolio-card:nth-child(even) {
  margin-top: 105px;
}

.portfolio-art {
  position: relative;
  display: grid;
  height: 580px;
  overflow: hidden;
  place-items: center;
  border-radius: 28px;
}

.portfolio-art::before,
.portfolio-art::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.35;
}

.portfolio-art::before {
  width: 420px;
  height: 420px;
}

.portfolio-art::after {
  width: 335px;
  height: 335px;
}

.portfolio-one {
  color: #5d453c;
  background:
    linear-gradient(145deg, transparent 60%, rgba(255, 245, 235, 0.2)),
    #b17966;
}

.portfolio-two {
  color: #e3d2bd;
  background:
    linear-gradient(160deg, transparent 55%, rgba(197, 142, 145, 0.32)),
    #353032;
}

.portfolio-three {
  color: #3f4e3d;
  background:
    linear-gradient(130deg, transparent 55%, rgba(255, 253, 249, 0.4)),
    #aab89d;
}

.portfolio-four {
  color: #534f75;
  background:
    linear-gradient(140deg, rgba(255, 253, 249, 0.65), transparent 50%),
    #b5b8d8;
}

.portfolio-index {
  position: absolute;
  top: 25px;
  left: 27px;
  font-size: 9px;
  font-weight: 700;
}

.portfolio-monogram {
  position: relative;
  z-index: 1;
  font-family: var(--font-script), cursive;
  font-size: 122px;
  line-height: 1;
}

.portfolio-demo {
  position: absolute;
  right: 25px;
  bottom: 25px;
  padding: 8px 11px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}

.portfolio-caption h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -0.03em;
}

.portfolio-caption p,
.portfolio-caption > span {
  margin: 2px 0 0;
  color: rgba(40, 37, 38, 0.58);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-live-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-live .portfolio-art {
  isolation: isolate;
  color: #fffdf8;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 55px rgba(43, 35, 39, 0.16);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.portfolio-live .portfolio-art::before {
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  background: linear-gradient(180deg, rgba(22, 31, 27, 0.08), rgba(22, 31, 27, 0.58));
  border: 0;
  border-radius: inherit;
  opacity: 1;
}

.portfolio-live .portfolio-art::after {
  z-index: -1;
  width: 360px;
  height: 360px;
  border-color: rgba(255, 253, 248, 0.8);
}

.portfolio-garden {
  background-image: url("demos/garden/assets/hero.jpg");
}

.portfolio-coastal {
  background-image: url("demos/coastal/assets/hero.jpg");
}

.portfolio-party {
  background-image: url("demos/wedding-party/assets/hero.jpg");
  background-position: 62% center;
}

.portfolio-live .portfolio-monogram {
  font-size: clamp(82px, 9vw, 132px);
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.25);
}

.portfolio-live-link:hover .portfolio-art {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(43, 35, 39, 0.24);
}

.portfolio-live-link:hover .portfolio-demo {
  background: rgba(255, 253, 248, 0.18);
}

.portfolio-caption .portfolio-live-description {
  max-width: 430px;
  margin-top: 9px;
  color: rgba(40, 37, 38, 0.68);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.partnership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
}

.partner-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cocoa);
  background: var(--sage-soft);
}

.partner-ring {
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(109, 85, 78, 0.26);
  border-radius: 50%;
}

.partner-ring::before {
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(201, 166, 80, 0.54);
  border-radius: 50%;
  content: "";
}

.partner-one,
.partner-two {
  position: relative;
  z-index: 1;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 480;
  letter-spacing: -0.06em;
}

.partner-amp {
  position: relative;
  z-index: 2;
  margin: 0 -3px;
  color: var(--rose-deep);
  font-family: var(--font-script), cursive;
  font-size: clamp(75px, 8vw, 125px);
  line-height: 1;
}

.partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 95px max(7vw, 80px);
  color: var(--paper);
  background: var(--mauve);
}

.partner-copy .eyebrow {
  color: #e9ced0;
}

.partner-copy h2 {
  max-width: 620px;
}

.partner-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 253, 249, 0.74);
}

.partner-copy .partner-emphasis {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 249, 0.24);
  font-weight: 560;
}

.process {
  background: var(--ivory);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12%;
  align-items: start;
  margin-bottom: 85px;
}

.process-heading .eyebrow {
  margin-top: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-grid article {
  min-height: 305px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.6);
}

.process-grid article:nth-child(even) {
  background: var(--lavender-soft);
}

.process-grid article > span {
  font-size: 9px;
  font-weight: 750;
}

.process-grid h3 {
  margin: 95px 0 14px;
  font-size: 26px;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.process-grid p {
  margin: 0;
  color: rgba(40, 37, 38, 0.62);
  font-size: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12%;
  background: var(--paper);
}

.faq-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-heading > p:last-child {
  max-width: 330px;
  color: rgba(40, 37, 38, 0.62);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 520;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 750;
}

.faq-list summary i {
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  transition: transform 250ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -5px 55px 30px;
  color: rgba(40, 37, 38, 0.66);
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  padding: 110px 24px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 28% 15%, rgba(197, 142, 145, 0.38), transparent 25rem),
    var(--cocoa);
  text-align: center;
}

.contact .eyebrow {
  position: relative;
  z-index: 1;
  color: #e7cacb;
}

.contact h2 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact h2 .script-line {
  display: block;
  margin-top: 3px;
  color: #edc8cb;
  font-size: 0.92em;
  transform: rotate(-2deg);
}

.contact > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 34px 0;
  color: rgba(255, 253, 249, 0.7);
}

.contact .button {
  position: relative;
  z-index: 1;
  color: var(--cocoa);
  background: var(--paper);
}

.contact-orbit.orbit-one {
  top: -220px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-color: rgba(255, 253, 249, 0.16);
}

.contact-orbit.orbit-two {
  bottom: -300px;
  left: -120px;
  width: 650px;
  height: 650px;
  border-color: rgba(201, 166, 80, 0.32);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 55px max(6vw, calc((100vw - 1440px) / 2));
  background: var(--ivory);
}

footer > p {
  margin: 0;
  color: rgba(40, 37, 38, 0.58);
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-self: end;
}

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

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

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.13em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 30px;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 10px;
    font-size: 12px;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
    gap: 30px 38px;
    min-height: 850px;
    padding-inline: 48px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-art {
    width: 100%;
    height: 570px;
  }

  .laptop {
    top: 76px;
    right: -38px;
    width: 560px;
    transform: rotate(1deg) scale(0.9);
    transform-origin: right center;
  }

  .detail-one {
    right: -8px;
  }

  .detail-two {
    left: -2px;
  }

  .manifesto-grid,
  .catalog-intro,
  .packages-intro,
  .portfolio-heading {
    gap: 7%;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card {
    padding-inline: 28px;
  }

  .portfolio-art {
    height: 480px;
  }

  .partner-copy {
    padding-inline: 65px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > p {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 36px);
    min-height: 78px;
  }

  .brand-main {
    font-size: 13px;
  }

  .brand-sub {
    font-size: 22px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 130px 20px 70px;
  }

  .hero-copy {
    width: auto;
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(48px, 13.5vw, 65px);
  }

  .hero .script-line {
    margin: 8px 0 16px;
    max-width: 100%;
    font-size: 48px;
    text-align: left;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    width: 100%;
    height: 485px;
    margin-top: 35px;
  }

  .hero-note {
    margin-top: 32px;
  }

  .hero-orbit.orbit-one {
    top: 2px;
    right: -205px;
    width: 470px;
    height: 470px;
  }

  .hero-orbit.orbit-two {
    top: 38px;
    right: -150px;
    width: 380px;
    height: 380px;
  }

  .laptop {
    top: 58px;
    right: 50%;
    width: 610px;
    transform: translateX(50%) scale(0.62);
    transform-origin: top center;
  }

  .detail-one {
    right: -4px;
    bottom: 9px;
    width: 176px;
    min-height: 96px;
    padding: 18px;
  }

  .detail-two {
    bottom: 3px;
    left: -3px;
    width: 112px;
    height: 112px;
  }

  .tiny-monogram {
    font-size: 44px;
  }

  .section-script {
    margin-right: auto;
    margin-left: 0;
    font-size: 40px;
  }

  .catalog-script {
    position: static;
  }

  .manifesto,
  .catalog,
  .packages,
  .portfolio,
  .process,
  .faq {
    padding: 90px 20px;
  }

  .section-label span:last-child {
    display: none;
  }

  .manifesto-grid,
  .catalog-intro,
  .packages-intro,
  .portfolio-heading,
  .process-heading,
  .faq,
  .partnership {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 40px;
    margin-top: 50px;
  }

  .manifesto-grid h2,
  .catalog-intro h2,
  .packages-intro h2,
  .portfolio-heading h2,
  .partner-copy h2,
  .process-heading h2,
  .faq-heading h2 {
    font-size: 43px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 65px;
  }

  .catalog-intro,
  .packages-intro,
  .portfolio-heading {
    gap: 30px;
    margin-bottom: 60px;
  }

  .experience-group + .experience-group {
    margin-top: 90px;
  }

  .group-heading {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .group-heading h3 {
    font-size: 26px;
  }

  .experience-grid {
    display: flex;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .experience-grid::-webkit-scrollbar {
    display: none;
  }

  .experience-card {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .experience-content > p:not(.experience-number) {
    min-height: auto;
  }

  .catalog-note {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 80px;
    padding: 45px 30px;
  }

  .catalog-note .script-line {
    font-size: 42px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .package-card {
    min-height: 560px;
  }

  .package-card.featured {
    transform: none;
  }

  .alacarte {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .portfolio-card:nth-child(even) {
    margin-top: 0;
  }

  .portfolio-art {
    height: 480px;
  }

  .portfolio-caption {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .partner-art {
    min-height: 520px;
  }

  .partner-ring {
    width: 430px;
    height: 430px;
  }

  .partner-copy {
    padding: 85px 24px;
  }

  .process-heading {
    gap: 25px;
  }

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

  .process-grid article {
    min-height: 240px;
  }

  .process-grid h3 {
    margin-top: 65px;
  }

  .faq {
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    grid-template-columns: 26px 1fr auto;
    gap: 10px;
    font-size: 16px;
  }

  .faq-list details > p {
    margin: -3px 35px 25px;
  }

  .contact {
    min-height: 700px;
  }

  .contact h2 {
    font-size: 49px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .laptop-lid {
    animation: float-laptop 7s ease-in-out infinite;
  }

  .detail-one {
    animation: float-detail 6s ease-in-out infinite;
  }

  @keyframes float-laptop {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes float-detail {
    0%,
    100% {
      transform: rotate(-2deg) translateY(0);
    }
    50% {
      transform: rotate(-2deg) translateY(8px);
    }
  }
}
