:root {
  --bg: #fff7f2;
  --bg-warm: #fffaf6;
  --bg-deep: #151315;

  --surface: #fffaf6;
  --surface-soft: #f7e9e5;
  --surface-rose: #f8d6dc;
  --surface-dark: #211a1d;

  --text: #2a1f1f;
  --text-soft: #745f5d;
  --text-light: #fff8f5;

  --pink: #f05b8f;
  --pink-soft: #f8b7c8;
  --pink-deep: #c73566;

  --berry: #9f1239;
  --berry-deep: #5f0b21;

  --cream: #fff2df;
  --pastry: #c8873f;

  --line: #ead3cd;
  --line-dark: rgba(255, 248, 245, 0.16);

  --shadow-soft: 0 18px 50px rgba(95, 11, 33, 0.12);
  --shadow-medium: 0 20px 55px rgba(95, 11, 33, 0.18);
  --shadow-dark: 0 24px 70px rgba(21, 19, 21, 0.28);

  --radius-lg: 28px;
  --radius-md: 18px;

  --container: 1120px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(248, 183, 200, 0.34), transparent 30%),
    radial-gradient(circle at 96% 18%, rgba(255, 242, 223, 0.85), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 54%, #fff1ea 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--berry);
  color: var(--text-light);
}

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

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

p {
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-title {
  color: var(--berry-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 500;
}

.nav-links a:not(.btn) {
  color: var(--text);
  transition: color 180ms ease;
}

.nav-links a:not(.btn):hover {
  color: var(--pink-deep);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--berry), var(--pink-deep));
  color: var(--text-light);
  box-shadow: 0 14px 34px rgba(159, 18, 57, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(159, 18, 57, 0.34);
}

.btn-secondary {
  background: rgba(255, 250, 246, 0.76);
  color: var(--berry-deep);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: var(--surface-rose);
  border-color: var(--pink-soft);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 84% 22%, rgba(240, 91, 143, 0.2), transparent 28%),
    radial-gradient(circle at 60% 78%, rgba(200, 135, 63, 0.12), transparent 24%),
    linear-gradient(135deg, #fff7f2 0%, #fffaf6 48%, #f8d6dc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pink-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.soft-panel h2,
.quote-soft p,
.cta h3 {
  margin: 0;
  color: var(--berry-deep);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-signature {
  display: inline-block;
  margin-top: 24px;
  color: var(--pink-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

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

.hero-card {
  position: relative;
  padding: 14px;
  background:
    radial-gradient(circle at 20% 10%, rgba(159, 18, 57, 0.26), transparent 30%),
    var(--surface-dark);
  border: 1px solid var(--line-dark);
  border-radius: calc(var(--radius-lg) + 12px);
  box-shadow: var(--shadow-dark);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(1.06) contrast(1.04);
}

.hero-card-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 230px;
  padding: 16px 18px;
  background: rgba(255, 250, 246, 0.93);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(21, 19, 21, 0.22);
  backdrop-filter: blur(14px);
}

.hero-card-badge strong,
.hero-card-badge span {
  display: block;
}

.hero-card-badge strong {
  color: var(--berry-deep);
  font-size: 0.95rem;
}

.hero-card-badge span {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Sections */

.section {
  padding: clamp(70px, 8vw, 108px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-head h2,
.soft-panel h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

.section-intro {
  color: var(--text-soft);
  font-size: 1rem;
}

/* About */

.about-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.92), rgba(248, 214, 220, 0.34)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-card p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
}

.gallery-stack {
  display: grid;
  gap: 22px;
}

.gallery-card,
.insta-grid a {
  overflow: hidden;
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.gallery-card img,
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition:
    transform 450ms ease,
    filter 450ms ease;
}

.gallery-main img {
  min-height: 620px;
}

.gallery-stack img {
  min-height: 299px;
}

.gallery-card:hover img,
.insta-grid a:hover img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.05);
}

/* Order */

.soft-panel {
  padding: clamp(32px, 6vw, 64px);
  background:
    radial-gradient(circle at 88% 18%, rgba(248, 183, 200, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(255, 250, 246, 0.94), rgba(255, 242, 223, 0.72));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 10px);
  box-shadow: var(--shadow-soft);
}

.soft-panel .section-intro {
  max-width: 650px;
  margin-top: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.step {
  padding: 26px;
  background: rgba(255, 250, 246, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--berry), var(--pink));
  color: var(--text-light);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(159, 18, 57, 0.24);
}

.step h3,
.faq-item h3 {
  margin: 0 0 10px;
  color: var(--berry-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.step p,
.faq-item p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* Quote Band */

.quote-band {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at center, rgba(159, 18, 57, 0.24), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(240, 91, 143, 0.14), transparent 24%),
    linear-gradient(135deg, #151315, #211a1d);
  color: var(--text-light);
}

.quote-card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.quote-card p {
  margin: 0;
  color: var(--text-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.quote-card span {
  display: inline-block;
  margin-top: 24px;
  color: var(--pink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* CTA */

.cta {
  padding: clamp(70px, 8vw, 108px) 0 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.94), rgba(248, 214, 220, 0.52)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.cta h3 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.cta p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--text-soft);
}

/* Rumi Quote */

.quote-soft-section {
  padding-top: clamp(64px, 7vw, 96px);
}

.quote-soft {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 242, 223, 0.8), transparent 36%),
    rgba(255, 250, 246, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.quote-soft p {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.quote-soft span {
  display: inline-block;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rumi-ornament {
  width: 120px;
  margin: 24px auto 0;
  opacity: 0.85;
}

/* From The Kitchen */

.from-kitchen {
  padding-top: clamp(40px, 6vw, 70px);
}

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

.insta-grid a {
  aspect-ratio: 1 / 1;
}

/* FAQ */

.faq-elegant {
  padding-top: clamp(40px, 6vw, 80px);
}

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

.faq-item {
  padding: 26px;
  background: rgba(255, 250, 246, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.faq-item strong {
  color: var(--berry-deep);
}

/* Footer */

.footer-ornament {
  width: min(260px, 60vw);
  margin: 10px auto 18px;
  opacity: 0.9;
}

.site-footer {
  background:
    radial-gradient(circle at 50% -40%, rgba(159, 18, 57, 0.25), transparent 40%),
    var(--bg-deep);
  color: rgba(255, 248, 245, 0.78);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--pink-soft);
  font-weight: 600;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--cream);
}

/* Animation */

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */

@media (max-width: 920px) {
  :root {
    --header-height: auto;
  }

  .nav {
    min-height: unset;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .section-head,
  .gallery-grid,
  .steps,
  .insta-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .gallery-main img,
  .gallery-stack img {
    min-height: unset;
    aspect-ratio: 4 / 3;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-tag {
    font-size: 0.76rem;
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

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

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .hero-card {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-image {
    border-radius: 18px;
  }

  .hero-card-badge {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .about-card,
  .soft-panel,
  .quote-soft,
  .cta-box {
    padding: 24px;
    border-radius: 22px;
  }

  .gallery-grid,
  .gallery-stack,
  .insta-grid,
  .faq-grid,
  .steps {
    gap: 14px;
  }

  .step,
  .faq-item {
    padding: 22px;
  }

  .quote-card p {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .footer-inner {
    padding: 28px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}