:root {
  --off-white: #fbf7f0;
  --cream: #fffaf2;
  --warm-cream: #f3e8da;
  --beige: #d8c1a7;
  --dusty-rose: #b9797f;
  --rose-deep: #8f535c;
  --olive: #657158;
  --olive-dark: #384233;
  --light-brown: #9a735a;
  --gold: #c6a25d;
  --espresso: #211916;
  --ink: #12100f;
  --muted: #71645c;
  --soft-line: rgba(33, 25, 22, 0.14);
  --light-line: rgba(255, 250, 242, 0.18);
  --shadow-soft: 0 24px 70px rgba(55, 36, 27, 0.16);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-card: 8px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--espresso);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.98), rgba(244, 234, 220, 0.96) 38%, rgba(226, 207, 187, 0.95) 64%, rgba(246, 238, 229, 0.98)),
    var(--off-white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.55'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: var(--radius-card);
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 250, 242, 0.7);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 60px rgba(41, 29, 24, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-block;
  overflow: hidden;
  border: 2px solid rgba(255, 250, 242, 0.92);
  border-radius: 50%;
  background: var(--dusty-rose);
  box-shadow: 0 12px 28px rgba(143, 83, 92, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 33%;
  transform: scale(1.42);
}

.brand-name {
  color: var(--espresso);
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(33, 25, 22, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--dusty-rose);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--espresso);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(33, 25, 22, 0.18);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 18px 46px rgba(33, 25, 22, 0.22);
}

.button-light {
  border: 1px solid rgba(33, 25, 22, 0.14);
  background: rgba(255, 250, 242, 0.72);
  color: var(--espresso);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 25, 22, 0.06);
  color: var(--espresso);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 200ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  top: 94px;
  right: 16px;
  left: 16px;
  z-index: 35;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, 0.78);
  border-radius: var(--radius-card);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 16px;
  border-radius: var(--radius-card);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(185, 121, 127, 0.11);
}

.section-pad {
  position: relative;
  z-index: 2;
  padding: 112px max(24px, calc((100vw - var(--max-width)) / 2));
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 152px max(24px, calc((100vw - var(--max-width)) / 2)) 92px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.96) 0%, rgba(251, 247, 240, 0.86) 39%, rgba(251, 247, 240, 0.28) 68%, rgba(33, 25, 22, 0.38) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.02), rgba(33, 25, 22, 0.12));
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.92), rgba(226, 207, 187, 0.8) 45%, rgba(33, 25, 22, 0.98) 100%),
    var(--cream);
}

.studio-plane {
  position: absolute;
  border: 1px solid rgba(255, 250, 242, 0.18);
  transform: rotate(-7deg);
  background: rgba(255, 250, 242, 0.12);
}

.plane-one {
  top: 112px;
  right: -120px;
  width: 620px;
  height: 780px;
}

.plane-two {
  right: 260px;
  bottom: -160px;
  width: 760px;
  height: 280px;
  transform: rotate(13deg);
  background: rgba(198, 162, 93, 0.12);
}

.hero-photo,
.phone-stage {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-dark);
}

.hero-photo {
  top: 130px;
  right: 6%;
  width: 265px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.36);
}

.hero-photo img,
.studio-portrait img,
.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: 52% 36%;
}

.phone-stage {
  right: 18%;
  bottom: 92px;
  width: 320px;
}

.phone-frame {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(18, 16, 15, 0.98), rgba(95, 65, 58, 0.95)),
    var(--espresso);
}

.phone-frame .media-slot {
  border-radius: 32px;
}

.phone-camera {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(18, 16, 15, 0.78);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.15);
  color: rgba(255, 250, 242, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.card-beauty {
  top: 210px;
  right: 32%;
  animation: floatMedium 8s ease-in-out infinite;
}

.card-tech {
  right: 8%;
  bottom: 325px;
  animation: floatSlow 9s ease-in-out infinite;
}

.card-lifestyle {
  right: 42%;
  bottom: 200px;
  animation: floatFast 7s ease-in-out infinite;
}

.card-story {
  right: 5%;
  top: 420px;
  animation: floatMedium 9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
}

.eyebrow,
.section-label {
  margin-bottom: 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  color: var(--espresso);
  font-size: 5.9rem;
  font-weight: 700;
}

h2 {
  color: var(--espresso);
  font-size: 4.25rem;
}

h3 {
  color: var(--espresso);
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-subheadline {
  max-width: 540px;
  margin-top: 18px;
  color: var(--rose-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1.08;
}

.hero-copy,
.intro-copy p,
.section-heading > p,
.studio-copy p,
.world-card p,
.world-card small,
.service-item p,
.about-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 610px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  position: relative;
  z-index: 3;
  width: min(730px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  border: 1px solid rgba(33, 25, 22, 0.1);
  background: rgba(33, 25, 22, 0.1);
}

.hero-proof div {
  min-height: 94px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.72);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  color: var(--espresso);
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.media-slot {
  position: relative;
  width: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(185, 121, 127, 0.44), rgba(255, 250, 242, 0.6) 48%, rgba(101, 113, 88, 0.38)),
    var(--warm-cream);
  text-align: center;
}

.media-slot::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(33, 25, 22, 0.12);
  border-radius: calc(var(--radius-card) - 2px);
}

.media-slot::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.56);
}

.media-slot span,
.media-slot small {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 18px;
}

.media-slot span {
  color: var(--espresso);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-slot small {
  max-width: 220px;
  margin-top: 8px;
  color: rgba(33, 25, 22, 0.64);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.vertical {
  aspect-ratio: 9 / 16;
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: end;
}

.intro-copy {
  max-width: 720px;
  margin: 28px 0 0 auto;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  border-block: 1px solid var(--soft-line);
  background: var(--soft-line);
}

.principles div {
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 250, 242, 0.54);
}

.principles span,
.service-item span,
.scene-strip span {
  display: block;
  margin-bottom: 34px;
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 900;
}

.principles strong {
  display: block;
  margin-bottom: 12px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}

.principles p {
  color: var(--muted);
  line-height: 1.65;
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.84), rgba(244, 234, 220, 0.86) 45%, rgba(216, 193, 167, 0.5)),
    var(--warm-cream);
}

.studio-layout,
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.studio-copy p {
  max-width: 700px;
  margin-top: 22px;
}

.studio-tags,
.about-tags,
.brief-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.studio-tags span,
.about-tags span,
.brief-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(101, 113, 88, 0.18);
  border-radius: 999px;
  background: rgba(101, 113, 88, 0.1);
  color: var(--olive-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.studio-portrait,
.portrait-wrap {
  overflow: hidden;
  border: 1px solid rgba(33, 25, 22, 0.12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.studio-portrait {
  aspect-ratio: 4 / 5;
}

.studio-portrait img {
  object-position: 52% 36%;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 820px;
}

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

.world-card,
.idea-card,
.service-item,
.contact-layout {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-card);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: var(--shadow-soft);
}

.world-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.world-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 83, 92, 0.28);
  box-shadow: 0 28px 80px rgba(55, 36, 27, 0.2);
}

.mini-placeholder {
  min-height: 138px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px dashed rgba(33, 25, 22, 0.2);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(185, 121, 127, 0.18), rgba(255, 250, 242, 0.76), rgba(101, 113, 88, 0.15));
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.world-card h3 {
  min-height: 58px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
}

.world-card small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--light-brown);
  font-size: 0.82rem;
  font-weight: 800;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(18, 16, 15, 1), rgba(33, 25, 22, 0.98) 48%, rgba(56, 66, 51, 0.96)),
    var(--ink);
  color: var(--cream);
}

.dark-section h2,
.dark-section h3 {
  color: var(--cream);
}

.dark-section .section-label {
  color: var(--gold);
}

.dark-section .section-heading > p {
  color: rgba(255, 250, 242, 0.68);
}

.shelf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.shelf-header h3 {
  color: rgba(255, 250, 242, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.shelf-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, 0.18);
}

.portfolio-shelf {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 0 30px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 250, 242, 0.35) transparent;
}

.portfolio-shelf::-webkit-scrollbar {
  height: 8px;
}

.portfolio-shelf::-webkit-scrollbar-track {
  background: transparent;
}

.portfolio-shelf::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.24);
}

.work-card {
  position: relative;
  flex: 0 0 262px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.work-card-large {
  flex-basis: 330px;
}

.work-card:hover,
.work-card:focus-within {
  z-index: 3;
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(198, 162, 93, 0.52);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.work-card .media-slot {
  border: 0;
  border-radius: var(--radius-card);
}

.work-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 82px 18px 18px;
  background: linear-gradient(180deg, rgba(18, 16, 15, 0), rgba(18, 16, 15, 0.9) 58%, rgba(18, 16, 15, 0.98));
  color: var(--cream);
}

.work-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-meta h3 {
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.14;
}

.idea-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.idea-card {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
  transition: transform 190ms ease, background 190ms ease;
}

.idea-card:nth-child(even) {
  background: rgba(231, 205, 202, 0.48);
}

.idea-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 250, 242, 0.88);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-block: 1px solid var(--soft-line);
  background: var(--soft-line);
}

.service-item {
  min-height: 250px;
  padding: 26px;
  box-shadow: none;
}

.service-item h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.76rem;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--soft-line);
  background: var(--soft-line);
}

.kit-panel,
.timeline-step,
.package-card {
  border-radius: var(--radius-card);
  background: rgba(255, 250, 242, 0.66);
}

.kit-panel {
  min-height: 220px;
  padding: 28px;
}

.kit-panel-large {
  grid-column: span 2;
}

.kit-panel span,
.timeline-step span,
.package-label {
  display: block;
  margin-bottom: 28px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-panel p,
.timeline-step p,
.package-card li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.kit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.kit-tags b {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(143, 83, 92, 0.18);
  border-radius: 999px;
  background: rgba(185, 121, 127, 0.1);
  color: var(--espresso);
  font-size: 0.84rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border-block: 1px solid var(--soft-line);
  background: var(--soft-line);
}

.timeline-step {
  min-height: 300px;
  padding: 26px;
  box-shadow: none;
}

.timeline-step h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

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

.package-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 250, 242, 0.12);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.package-card.featured {
  position: relative;
  border-color: rgba(198, 162, 93, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.15), rgba(198, 162, 93, 0.1)),
    rgba(255, 250, 242, 0.08);
  transform: translateY(-16px);
}

.package-card .package-label {
  color: var(--gold);
}

.package-card h3 {
  margin-bottom: 28px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
}

.package-card ul {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
  list-style: none;
}

.package-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.74);
}

.package-card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
}

.about {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.1fr);
}

.portrait-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
}

.portrait-image {
  object-position: 50% 36%;
}

.portrait-video-placeholder {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: var(--radius-card);
  background: rgba(18, 16, 15, 0.58);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.portrait-video-placeholder span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portrait-video-placeholder small {
  display: block;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-copy p {
  max-width: 680px;
  margin-top: 20px;
}

.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card,
.faq-item {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-card);
  background: rgba(255, 250, 242, 0.66);
  box-shadow: var(--shadow-soft);
}

.testimonial-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.testimonial-card p {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.58rem;
  line-height: 1.22;
}

.testimonial-card cite {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
}

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

.faq-item {
  min-height: 230px;
  padding: 28px;
}

.faq-item h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.final-cta {
  padding-bottom: 96px;
}

.final-cta-layout {
  max-width: 940px;
}

.final-cta-layout h2 {
  max-width: 900px;
  color: var(--cream);
}

.final-cta-layout p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cta-invert {
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.08);
  color: var(--cream);
}

.footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.8fr) minmax(160px, 0.5fr);
  gap: 24px;
  padding: 42px max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links,
.footer-socials,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-socials,
.footer-meta {
  align-content: start;
  justify-content: flex-end;
}

.footer-meta {
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
  color: var(--light-brown);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 0.72, 0.22, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 170ms;
}

.float-slow {
  animation: floatSlow 8.5s ease-in-out infinite;
}

.float-medium {
  animation: floatMedium 7.5s ease-in-out infinite;
}

.float-fast {
  animation: floatFast 6.5s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(1deg);
  }
}

@keyframes floatMedium {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }
  50% {
    transform: translate3d(0, 14px, 0) rotate(-1deg);
  }
}

@keyframes floatFast {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(5deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(2deg);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 13px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 5.1rem;
  }

  h2 {
    font-size: 3.7rem;
  }

  .phone-stage {
    right: 9%;
    width: 292px;
  }

  .hero-photo {
    right: 4%;
    width: 220px;
  }

  .card-beauty {
    right: 35%;
  }

  .world-grid,
  .service-list,
  .testimonial-grid,
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline,
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .idea-board {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 940px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

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

  .menu-button {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero {
    min-height: 1040px;
    align-content: start;
    padding-top: 128px;
    padding-bottom: 80px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 247, 240, 0.96) 0%, rgba(251, 247, 240, 0.84) 42%, rgba(33, 25, 22, 0.44) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, 0.34), rgba(33, 25, 22, 0.2));
  }

  .hero-content {
    align-self: start;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 340px;
    margin-top: 34px;
  }

  .hero-proof div {
    min-height: 74px;
  }

  .phone-stage {
    right: 24px;
    bottom: 68px;
    width: 238px;
  }

  .hero-photo {
    top: auto;
    right: auto;
    bottom: 105px;
    left: 24px;
    width: 230px;
  }

  .floating-card {
    display: none;
  }

  .intro-layout,
  .section-heading,
  .studio-layout,
  .about,
  .footer,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    margin-left: 0;
  }

  .principles,
  .world-grid,
  .service-list,
  .kit-grid,
  .timeline,
  .package-grid,
  .testimonial-grid,
  .faq-grid,
  .idea-board {
    grid-template-columns: 1fr;
  }

  .kit-panel-large {
    grid-column: auto;
  }

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

  .studio-portrait,
  .portrait-wrap {
    width: min(420px, 100%);
  }

  .footer-socials,
  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 60px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section-pad {
    padding: 82px 18px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero {
    min-height: 980px;
    padding: 112px 18px 72px;
  }

  .hero-subheadline {
    font-size: 1.45rem;
  }

  .hero-copy,
  .intro-copy p,
  .section-heading > p,
  .studio-copy p,
  .world-card p,
  .world-card small,
  .service-item p,
  .about-copy p,
  .contact-layout p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    width: 100%;
  }

  .phone-stage {
    right: 16px;
    bottom: 74px;
    width: 190px;
  }

  .phone-frame {
    padding: 10px;
    border-radius: 32px;
  }

  .phone-frame .media-slot {
    border-radius: 24px;
  }

  .hero-photo {
    bottom: 95px;
    left: 16px;
    width: 184px;
  }

  .plane-one {
    right: -240px;
  }

  .principles div,
  .world-card,
  .service-item,
  .kit-panel,
  .timeline-step,
  .package-card,
  .testimonial-card,
  .faq-item,
  .idea-card {
    padding: 22px;
  }

  .timeline-step,
  .package-card,
  .testimonial-card,
  .faq-item {
    min-height: auto;
  }

  .testimonial-card p {
    font-size: 1.36rem;
  }

  .final-cta-layout p {
    font-size: 0.98rem;
  }

  .world-card {
    min-height: 360px;
  }

  .mini-placeholder {
    min-height: 120px;
  }

  .work-card,
  .work-card-large {
    flex-basis: 228px;
  }

  .shelf-header h3 {
    font-size: 1.58rem;
  }

  .shelf-controls {
    display: none;
  }

  .contact-layout {
    padding: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-meta {
    gap: 10px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.36rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .phone-stage {
    width: 176px;
  }

  .hero-photo {
    width: 168px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
