:root {
  --bg: #121212;
  --bg-soft: #1e1e1e;
  --surface: rgba(30, 30, 30, 0.72);
  --text: #f4eee8;
  --muted: rgba(244, 238, 232, 0.72);
  --line: rgba(244, 238, 232, 0.14);
  --accent: #c98357;
  --accent-soft: #a14f2d;
  --shadow: 0 32px 60px rgba(0, 0, 0, 0.4);
  --header-height: 78px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 173, 138, 0.15), transparent 30%),
    linear-gradient(180deg, #181818 0%, var(--bg) 35%, #0a0a0a 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: var(--header-height);
  padding: 1rem clamp(1.25rem, 2vw, 2.25rem);
  background: rgba(249, 243, 238, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 23, 20, 0.08);
}

.brand-block {
  display: grid;
  gap: 0.2rem;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

main {
  overflow: clip;
}

.hero,
.services,
.proof,
.workflow,
.offer,
.contact {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 4rem);
  padding: 0.35rem 0 3.25rem;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-media {
  height: min(72svh, 760px);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-copy {
  align-self: center;
  max-width: 34rem;
  padding-top: 0.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.hero-text,
.section-text,
.services-grid p,
.comparison-copy p,
.workflow-list,
.offer-lines p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 34rem;
  margin: 1.5rem 0 0;
}

.hero-actions,
.contact .button {
  margin-top: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

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

.button-dark {
  background: var(--text);
  color: #fff7f0;
}

.button-light {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border: 1px solid rgba(28, 23, 20, 0.12);
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  margin-bottom: 5rem;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  padding-left: 1rem;
  animation: drift 28s linear infinite;
  font-weight: 700;
  color: rgba(28, 23, 20, 0.82);
}

.marquee-track span::after {
  content: "•";
  margin-left: 2rem;
  color: rgba(161, 79, 45, 0.72);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .section-heading,
.proof .section-heading,
.gallery .section-heading {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.services .section-heading h2,
.services .section-heading .eyebrow,
.proof .section-heading h2,
.proof .section-heading .eyebrow,
.proof .section-heading .section-text,
.gallery .section-heading h2,
.gallery .section-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.services {
  padding: 2rem 0 5rem;
}

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

.services-grid article {
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.service-index,
.comparison-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-grid p {
  margin: 0.9rem 0 0;
}

.proof {
  padding: 2rem 0 5rem;
}

.comparison-stack {
  display: grid;
  gap: 1.5rem;
}

.comparison-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid rgba(28, 23, 20, 0.1);
  border-radius: 2rem;
  background: rgba(255, 249, 245, 0.6);
  box-shadow: var(--shadow);
}

.comparison-card-alt .comparison-copy {
  order: 2;
}

.comparison-card-alt .comparison {
  order: 1;
}

.comparison-copy {
  padding: clamp(1rem, 3vw, 2rem);
}

.comparison-copy p:last-child {
  margin-bottom: 0;
}

.comparison {
  --comparison-position: 52%;
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #d9c8bb;
  line-height: 0;
}

.comparison > img,
.comparison-after img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--comparison-position));
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--comparison-position);
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.86);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(20, 12, 7, 0.18);
  pointer-events: none;
}

.comparison-side {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.82);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.comparison-side-left {
  left: 1rem;
}

.comparison-side-right {
  right: 1rem;
}

.comparison::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: rgba(255, 250, 245, 0.85);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle::before,
.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.comparison-handle::before {
  left: 12px;
}

.comparison-handle::after {
  right: 12px;
}

.gallery {
  padding: 0 0 5rem;
}

.gallery-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(28, 23, 20, 0.09);
  border-radius: 2rem;
  background: rgba(255, 250, 246, 0.72);
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(255, 249, 245, 0.65);
  box-shadow: var(--shadow);
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.instagram-grid-section {
  padding: 0 0 5rem;
}

.instagram-grid-section .section-heading {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.instagram-grid-section .section-heading h2,
.instagram-grid-section .section-heading .eyebrow,
.instagram-grid-section .section-heading .section-text {
  margin-left: auto;
  margin-right: auto;
}

.ig-profile-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(28, 23, 20, 0.09);
  border-radius: 2rem;
  background: rgba(255, 250, 246, 0.72);
  box-shadow: var(--shadow);
}

.ig-profile-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(28, 23, 20, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.ig-profile-topbar p {
  margin: 0;
  color: rgba(28, 23, 20, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-topbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 18px 0 0 rgba(161, 79, 45, 0.38), 36px 0 0 rgba(161, 79, 45, 0.18);
}

.ig-topbar-pill {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(161, 79, 45, 0.1);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-profile-header {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.35rem 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.38);
}

.ig-profile-avatar {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 3px solid rgba(161, 79, 45, 0.14);
  border-radius: 50%;
}

.ig-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ig-profile-meta {
  display: grid;
  gap: 0.9rem;
}

.ig-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ig-profile-stats div {
  display: grid;
  gap: 0.2rem;
}

.ig-profile-stats strong {
  font-size: 1rem;
  font-weight: 800;
}

.ig-profile-stats span,
.ig-profile-copy p,
.ig-profile-copy span {
  color: rgba(28, 23, 20, 0.68);
}

.ig-profile-stats span {
  font-size: 0.8rem;
  text-transform: lowercase;
}

.ig-profile-copy h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.ig-profile-copy p {
  margin: 0.4rem 0 0;
  max-width: 46ch;
  font-size: 0.92rem;
  line-height: 1.55;
}

.ig-profile-copy span {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-profile-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(28, 23, 20, 0.06);
  border-bottom: 1px solid rgba(28, 23, 20, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.ig-tab {
  padding-bottom: 0.35rem;
  color: rgba(28, 23, 20, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ig-tab-active {
  color: var(--text);
  border-bottom: 2px solid var(--text);
}

.ig-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: #111;
}

.ig-post {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ig-post-kicker {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: rgba(28, 23, 20, 0.54);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ig-post-kicker-light {
  color: rgba(255, 255, 255, 0.64);
}

.ig-food-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ig-post-1 {
  background: #fff;
}

.ig-bg-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, #fff5ec 0%, #ffffff 70%);
}

.ig-food-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-50%, -54%);
  box-shadow: 0 24px 64px rgba(255, 106, 0, 0.22), 0 6px 18px rgba(255, 106, 0, 0.12);
}

.ig-food-circle img,
.ig-food-plate img,
.ig-food-thumb img,
.ig-r-avatar img,
.ig-logo-mark img,
.ig-side img,
.ig-ing-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-bestseller-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ig-bottom-text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 18px 18px;
  text-align: center;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 60%, transparent);
}

.ig-note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 8px;
}

.ig-note-strip span {
  padding: 4px 8px;
  border: 1px solid rgba(161, 79, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 244, 0.95);
  color: rgba(28, 23, 20, 0.74);
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ig-headline,
.ig-post-5-headline,
.ig-post-6-headline,
.ig-post-7-headline,
.ig-post-8-headline,
.ig-brand-headline,
.ig-offer-headline,
.ig-post-3-headline {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ig-headline {
  font-size: 0.96rem;
  line-height: 1.25;
  color: #1a1a1a;
}

.ig-headline em,
.ig-post-5-headline span,
.ig-post-7-headline span,
.ig-brand-headline span,
.ig-post-3-headline span {
  color: var(--accent);
  font-style: normal;
}

.ig-bar {
  width: 28px;
  height: 2.5px;
  margin: 7px auto 0;
  border-radius: 2px;
  background: var(--accent);
}

.ig-post-2 {
  background: #1a1a1a;
}

.ig-post-2 .ig-food-img {
  filter: brightness(0.72) saturate(1.3);
}

.ig-color-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 106, 0, 0.55) 0%, rgba(255, 106, 0, 0.2) 50%, transparent 100%);
}

.ig-text-block {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.ig-eyebrow {
  margin-bottom: 6px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.ig-post-2 h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  color: #fff;
}

.ig-pyramid {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.ig-pyramid-row {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(14, 11, 9, 0.34);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-pyramid-row-base {
  background: rgba(161, 79, 45, 0.28);
}

.ig-post-3 {
  display: flex;
  flex-direction: column;
  padding: 18px 16px 16px;
  background: #fff;
}

.ig-label {
  margin-bottom: 10px;
  color: #bbb;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ig-split {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: stretch;
}

.ig-side {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.ig-before img {
  filter: saturate(0.15) brightness(0.85);
}

.ig-after {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  box-shadow: 0 4px 18px rgba(255, 106, 0, 0.2);
}

.ig-side-badge {
  position: absolute;
  bottom: 7px;
  left: 50%;
  padding: 3px 9px;
  border-radius: 10px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ig-before .ig-side-badge {
  background: rgba(0, 0, 0, 0.45);
  color: #aaa;
}

.ig-after .ig-side-badge {
  background: var(--accent);
  color: #fff;
}

.ig-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 900;
}

.ig-post-3-headline {
  margin-top: 10px;
  color: #1a1a1a;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.3;
}

.ig-post-3-meta {
  margin-top: 6px;
  color: rgba(28, 23, 20, 0.52);
  text-align: center;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-post-4 {
  background: var(--accent);
}

.ig-post-4 .ig-food-img {
  opacity: 0.3;
  filter: saturate(0) brightness(1.4);
}

.ig-orange-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(161, 79, 45, 1) 0%, rgba(161, 79, 45, 0.7) 50%, rgba(161, 79, 45, 0.4) 100%);
}

.ig-launch-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.44rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ig-food-plate {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -58%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.ig-bottom-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 0 20px 20px;
  text-align: center;
}

.ig-offer-headline {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
}

.ig-offer-sub {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.ig-launch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 11px;
}

.ig-launch-meta span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-cta-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #fff;
  color: var(--accent);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.ig-post-5 {
  background: #fff;
}

.ig-post-5 .ig-food-img {
  filter: brightness(0.95) saturate(1.1);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.55) 38%, transparent 65%);
}

.ig-post-5-headline {
  margin-bottom: 4px;
  color: #1a1a1a;
  font-size: 0.94rem;
  line-height: 1.25;
}

.ig-post-5-quote {
  max-width: 20ch;
  margin-bottom: 8px;
  color: rgba(28, 23, 20, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.92rem;
  line-height: 1.08;
}

.ig-sub {
  color: #aaa;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ig-post-6 {
  background: var(--accent);
}

.ig-ing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #c98357 0%, #a14f2d 55%, #7f391d 100%);
}

.ig-ing-mosaic {
  position: absolute;
  top: 8%;
  right: 7%;
  bottom: 22%;
  left: 7%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
}

.ig-ing-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.ig-ing-tile img {
  filter: brightness(0.85) saturate(1.1);
}

.ig-tile-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 4px 3px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-post-6-headline {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 3;
  color: #fff;
  text-align: center;
  font-size: 0.86rem;
}

.ig-post-6-subline {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 3;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ig-post-7 {
  background: #1a1410;
}

.ig-post-7 .ig-food-img {
  filter: brightness(0.55) saturate(1.2);
}

.ig-moody-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(255, 140, 40, 0.18) 0%, transparent 60%), linear-gradient(to top, rgba(10, 8, 6, 0.85) 0%, transparent 60%);
}

.ig-timestamp {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ig-post-7-headline {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.3;
}

.ig-post-7-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  line-height: 1.45;
}

.ig-post-8 {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: var(--accent);
}

.ig-post-8::before {
  content: "\"";
  position: absolute;
  top: -12px;
  left: 8px;
  color: rgba(255, 255, 255, 0.09);
  font-family: "Cormorant Garamond", serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
}

.ig-food-thumb {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ig-post-8-headline {
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
  color: #fff;
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.15;
}

.ig-stars-row {
  display: flex;
  position: relative;
  z-index: 2;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.ig-stars,
.ig-num,
.ig-r-name,
.ig-r-stars,
.ig-r-text,
.ig-count {
  color: #fff;
}

.ig-stars {
  font-size: 0.78rem;
}

.ig-num {
  font-size: 0.78rem;
  font-weight: 800;
}

.ig-review-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
}

.ig-r-top {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 5px;
}

.ig-r-avatar {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.ig-r-name {
  font-size: 0.54rem;
  font-weight: 800;
}

.ig-r-stars {
  margin-left: auto;
  font-size: 0.58rem;
}

.ig-r-text {
  line-height: 1.5;
  font-size: 0.54rem;
  color: rgba(255, 255, 255, 0.82);
}

.ig-count {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.5rem;
}

.ig-press-card {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.44rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-post-9 {
  background: #fff;
}

.ig-post-9 .ig-food-img {
  opacity: 0.08;
}

.ig-decor-ring {
  position: absolute;
  border: 1.5px solid rgba(161, 79, 45, 0.12);
  border-radius: 50%;
}

.ig-ring-1 {
  right: -20%;
  bottom: -25%;
  width: 80%;
  height: 80%;
}

.ig-ring-2 {
  right: -10%;
  bottom: -15%;
  width: 55%;
  height: 55%;
  border-color: rgba(161, 79, 45, 0.08);
}

.ig-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
}

.ig-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  margin-bottom: 12px;
  border: 1px solid rgba(161, 79, 45, 0.18);
  border-radius: 50%;
  color: rgba(161, 79, 45, 0.78);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.ig-logo-mark {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(161, 79, 45, 0.3);
}

.ig-brand-name {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.ig-brand-headline {
  margin-bottom: 10px;
  color: #1a1a1a;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.3;
}

.ig-tagline {
  margin-bottom: 12px;
  color: #c0c0c0;
  text-align: center;
  font-size: 0.5rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ig-dot-row {
  display: flex;
  gap: 5px;
}

.ig-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e4e4e4;
}

.ig-dot-active {
  width: 15px;
  border-radius: 3px;
  background: var(--accent);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 2rem 0 5rem;
}

.workflow-visual {
  min-height: 620px;
  border-radius: 2rem;
  overflow: hidden;
}

.workflow-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workflow-copy {
  max-width: 35rem;
}

.workflow-list {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.workflow-list li + li {
  margin-top: 0.95rem;
}

.offer {
  padding: 1rem 0 5rem;
}

.offer .section-heading {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.offer .section-heading h2,
.offer .section-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.offer-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 2rem;
}

.offer-lines p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact {
  text-align: center;
  padding: 3rem 0 5rem;
}

.contact .eyebrow {
  margin-bottom: 0.9rem;
}

.contact h2,
.contact .section-text {
  margin-left: auto;
  margin-right: auto;
}

.contact h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.contact .section-text {
  max-width: 42rem;
  margin-top: 0;
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero,
  .comparison-card,
  .workflow,
  .offer-lines,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 0 0 2.5rem;
  }

  .hero-media {
    height: min(60svh, 640px);
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .comparison-card-alt .comparison-copy,
  .comparison-card-alt .comparison {
    order: initial;
  }

  .workflow-visual {
    min-height: 420px;
  }

  .gallery-grid {
    gap: 0.85rem;
  }

  .ig-profile-header {
    grid-template-columns: 1fr;
  }

  .ig-profile-avatar {
    margin: 0 auto;
  }

  .ig-profile-stats {
    text-align: center;
  }

}

@media (max-width: 720px) {
  .site-header {
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .site-nav {
    gap: 0.9rem;
    font-size: 0.88rem;
  }

  .hero,
  .services,
  .proof,
  .workflow,
  .offer,
  .contact {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .comparison-card {
    padding: 0.85rem;
    border-radius: 1.4rem;
  }

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

  .gallery-shell {
    padding: 0.8rem;
    border-radius: 1.4rem;
  }

  .ig-grid-wrapper {
    gap: 3px;
  }

  .ig-profile-topbar,
  .ig-profile-tabs {
    justify-content: center;
  }

  .ig-profile-topbar p {
    font-size: 0.68rem;
    text-align: center;
  }

  .ig-topbar-dot,
  .ig-topbar-pill {
    display: none;
  }

  .ig-profile-header {
    padding: 1.1rem 0.95rem 0.9rem;
  }

  .ig-profile-stats {
    gap: 0.6rem;
  }

  .ig-profile-copy p {
    font-size: 0.84rem;
    text-align: center;
  }

  .ig-profile-copy h3,
  .ig-profile-copy span {
    display: block;
    text-align: center;
  }

  .comparison,
  .workflow-visual,
  .hero-media {
    border-radius: 1.2rem;
  }

  .comparison-side {
    top: 0.8rem;
    padding: 0.48rem 0.68rem;
    font-size: 0.64rem;
  }

  .comparison-handle {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 0.62rem;
  }
}

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

  .reveal,
  .button,
  .marquee-track {
    transition: none;
    animation: none;
  }

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

/* Perfume Instagram grid redesign */
.ig-grid-wrapper {
  gap: 8px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(42, 24, 15, 0.98) 0%, rgba(16, 10, 8, 1) 100%);
}

.ig-grid-wrapper .ig-post {
  display: none;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ig-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-tile-poster {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 243, 231, 0.92), transparent 28%),
    linear-gradient(180deg, #fbf6f0 0%, #efe2d3 100%);
}

.ig-tile-label-top {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  color: rgba(28, 23, 20, 0.56);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.ig-poster-media {
  position: absolute;
  top: 16%;
  right: 16%;
  left: 16%;
  height: 46%;
  border-radius: 999px 999px 1.25rem 1.25rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(83, 41, 21, 0.18);
}

.ig-poster-media img {
  object-position: center top;
}

.ig-poster-copy {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  padding: 0 18px;
  text-align: center;
}

.ig-poster-title,
.ig-story-title,
.ig-launch-title,
.ig-brand-statement,
.ig-ritual-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.ig-poster-title {
  color: #1c1714;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.88;
}

.ig-poster-meta {
  margin-top: 8px;
  color: rgba(28, 23, 20, 0.62);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ig-tile-story {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 165, 92, 0.16), transparent 32%),
    linear-gradient(180deg, #221612 0%, #0f0b09 100%);
}

.ig-story-kicker,
.ig-notes-title,
.ig-ritual-time {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ig-story-title {
  margin-top: 10px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 0.92;
}

.ig-story-text {
  margin: 12px 0 0;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  font-size: 0.7rem;
}

.ig-story-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.ig-story-lines span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.44rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-tile-transform {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(180deg, #f8f1e8 0%, #efe3d5 100%);
}

.ig-transform-head {
  display: flex;
  justify-content: space-between;
  color: rgba(28, 23, 20, 0.52);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ig-transform-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ig-transform-panel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 180px;
}

.ig-transform-panel-before {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 238, 219, 0.78), transparent 14%),
    linear-gradient(180deg, #efe6dc 0%, #ddd1c2 100%);
}

.ig-transform-panel-after {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 203, 155, 0.26), transparent 16%),
    linear-gradient(180deg, #2b1813 0%, #120c0a 100%);
  outline: 2px solid rgba(161, 79, 45, 0.7);
  outline-offset: -2px;
  box-shadow: 0 12px 28px rgba(161, 79, 45, 0.18);
}

.ig-transform-frame {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 34%;
  height: 46%;
  border-radius: 0.9rem 0.9rem 1.2rem 1.2rem;
  transform: translateX(-50%);
}

.ig-transform-frame::before {
  content: "";
  position: absolute;
  top: -14%;
  left: 50%;
  width: 38%;
  height: 18%;
  border-radius: 0.35rem 0.35rem 0.18rem 0.18rem;
  transform: translateX(-50%);
}

.ig-transform-panel-before .ig-transform-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(214, 203, 191, 0.84) 100%);
  box-shadow: 0 12px 28px rgba(74, 53, 36, 0.1);
}

.ig-transform-panel-before .ig-transform-frame::before {
  background: rgba(195, 184, 172, 0.84);
}

.ig-transform-panel-after .ig-transform-frame {
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.24) 0%, rgba(255, 245, 235, 0.08) 100%);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.ig-transform-panel-after .ig-transform-frame::before {
  background: linear-gradient(180deg, rgba(255, 231, 207, 0.92) 0%, rgba(202, 165, 130, 0.72) 100%);
}

.ig-transform-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ig-transform-panel-before .ig-transform-badge {
  background: rgba(28, 23, 20, 0.08);
  color: rgba(28, 23, 20, 0.58);
}

.ig-transform-panel-after .ig-transform-badge {
  background: rgba(255, 247, 240, 0.14);
  color: rgba(255, 244, 233, 0.84);
}

.ig-transform-copy {
  color: rgba(28, 23, 20, 0.72);
  text-align: center;
  line-height: 1.45;
  font-size: 0.64rem;
}

.ig-tile-notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 186, 126, 0.14), transparent 22%),
    linear-gradient(180deg, #1b120f 0%, #0d0908 100%);
}

.ig-notes-title {
  color: rgba(255, 255, 255, 0.52);
}

.ig-note-band {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ig-note-band-top {
  width: 44%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 241, 226, 0.82);
}

.ig-note-band-middle {
  width: 70%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 243, 229, 0.88);
}

.ig-note-band-base {
  width: 100%;
  background: rgba(161, 79, 45, 0.78);
  color: #fff9f3;
}

.ig-notes-footer {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
  font-size: 0.62rem;
}

.ig-tile-launch {
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 214, 175, 0.42), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(255, 188, 126, 0.18), transparent 24%),
    linear-gradient(180deg, #f8eee2 0%, #ead7c3 100%);
}

.ig-launch-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-launch-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 10, 8, 0.08) 0%, rgba(15, 10, 8, 0.68) 100%),
    radial-gradient(circle at 18% 16%, rgba(255, 230, 206, 0.18), transparent 24%);
}

.ig-tile-launch::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  z-index: 2;
  width: 32%;
  height: 43%;
  border: 1px solid rgba(255, 235, 215, 0.18);
  border-radius: 1rem 1rem 1.4rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  transform: translateX(-50%);
  box-shadow: 0 24px 40px rgba(12, 8, 6, 0.2);
}

.ig-tile-launch::after {
  content: "";
  position: absolute;
  top: 11%;
  left: 50%;
  z-index: 2;
  width: 13%;
  height: 10%;
  border-radius: 0.4rem 0.4rem 0.2rem 0.2rem;
  background: linear-gradient(180deg, rgba(255, 244, 232, 0.92) 0%, rgba(198, 171, 147, 0.55) 100%);
  transform: translateX(-50%);
}

.ig-launch-content {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
}

.ig-launch-chip {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 241, 0.9);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ig-launch-title {
  max-width: 8ch;
  margin-top: 12px;
  color: #fff8f2;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 0.95;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.ig-launch-details {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.ig-launch-details span,
.ig-launch-button {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ig-launch-details span {
  color: rgba(255, 243, 232, 0.78);
}

.ig-launch-button {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.95);
  color: #6f341d;
}

.ig-tile-moodboard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 191, 130, 0.16), transparent 24%),
    linear-gradient(180deg, #1d1411 0%, #0d0908 100%);
}

.ig-moodboard-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.ig-moodboard-grid img {
  border-radius: 14px;
  object-fit: cover;
}

.ig-moodboard-grid img:first-child {
  grid-row: span 2;
}

.ig-moodboard-grid img:nth-child(2) {
  object-position: center top;
}

.ig-moodboard-grid img:nth-child(4) {
  object-position: center top;
}

.ig-moodboard-caption {
  max-width: 20ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
  font-size: 0.62rem;
}

.ig-tile-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(180deg, #f6eadf 0%, #ead7c4 100%);
}

.ig-quote-mark {
  color: rgba(161, 79, 45, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: 4.6rem;
  line-height: 0.8;
}

.ig-quote-text {
  margin-top: 6px;
  color: #1c1714;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 0.96;
}

.ig-quote-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  color: rgba(28, 23, 20, 0.58);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ig-tile-ritual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 181, 119, 0.16), transparent 24%),
    linear-gradient(180deg, #17100d 0%, #090706 100%);
}

.ig-ritual-title {
  margin-top: 10px;
  color: #fffaf5;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 0.96;
}

.ig-ritual-steps {
  margin: 16px 0 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  font-size: 0.68rem;
}

.ig-tile-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 245, 233, 0.86), transparent 26%),
    linear-gradient(180deg, #f8f0e5 0%, #ecd8c4 100%);
}

.ig-brand-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(161, 79, 45, 0.2);
  border-radius: 50%;
  color: rgba(161, 79, 45, 0.84);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.ig-brand-lockup {
  margin-top: 14px;
  color: #8d4626;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ig-brand-statement {
  max-width: 10ch;
  margin-top: 12px;
  color: #1b1613;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 0.9;
}

.ig-brand-footer {
  max-width: 18ch;
  margin-top: 12px;
  color: rgba(28, 23, 20, 0.64);
  line-height: 1.5;
  font-size: 0.62rem;
}

@media (max-width: 720px) {
  .ig-grid-wrapper {
    gap: 6px;
    padding: 6px;
  }

  .ig-poster-title,
  .ig-story-title,
  .ig-launch-title,
  .ig-brand-statement {
    font-size: 1.5rem;
  }

  .ig-quote-text,
  .ig-ritual-title {
    font-size: 1.2rem;
  }

  .ig-note-band {
    font-size: 0.48rem;
  }
}

/* --- DARK MODE OVERRIDES --- */
.site-header { background: rgba(18, 18, 18, 0.85) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
.comparison-card, .gallery-shell, .ig-profile-shell, .ig-profile-header, .ig-profile-tabs { background: rgba(30, 30, 30, 0.7) !important; border-color: rgba(255,255,255,0.1) !important; }
.gallery-item, .comparison-handle, .comparison-side { background: rgba(40, 40, 40, 0.8) !important; color: #fff !important; border-color: rgba(255,255,255,0.1) !important; }
.ig-profile-topbar { background: rgba(20, 20, 20, 0.8) !important; }
.ig-profile-topbar p, .ig-profile-stats span, .ig-profile-copy p, .ig-profile-copy span, .ig-tab { color: rgba(255,255,255,0.7) !important; }
.ig-headline { color: #fff !important; }
.button-light { background: rgba(255, 255, 255, 0.1) !important; color: #fff !important; }
.button-dark { background: #fff !important; color: #000 !important; }
.ig-post-1, .ig-post-3 { background: #1a1a1a !important; color: #fff !important; }
.ig-bg-wash { background: radial-gradient(ellipse at 50% 55%, #2a2a2a 0%, #111 70%) !important; }
.ig-bottom-text { background: linear-gradient(to top, rgba(17, 17, 17, 1) 60%, transparent) !important; }
.ig-note-strip span { background: rgba(40, 40, 40, 0.95) !important; color: #fff !important; border-color: rgba(255,255,255,0.2) !important; }
.ig-post-3 { background: #222 !important; }
.services-grid article { background: rgba(30, 30, 30, 0.6) !important; border-color: rgba(255,255,255,0.1) !important; }
.marquee-track, .marquee-track span, .marquee-track span::after { color: #fff !important; }

/* Page Transition */
@keyframes fadeInPage {
  from { opacity: 0; filter: blur(10px); transform: translateY(20px); }
  to { opacity: 1; filter: blur(0px); transform: translateY(0); }
}
body { animation: fadeInPage 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
