/* ============================================
   MERAYA — Modest Elegance
   Brand Colors:
   - Champagne Gold: #B8925A
   - Ivory:          #F8F4EE
   - Espresso Brown: #3B2F2A
   - Nude:           #DBC5B4
   - Sage Grey:      #8D9886
   ============================================ */

:root {
  --gold:        #B8925A;
  --gold-light:  #D4B07A;
  --gold-dark:   #967648;
  --ivory:       #F8F4EE;
  --espresso:    #3B2F2A;
  --nude:        #DBC5B4;
  --sage:        #8D9886;
  --white:       #FFFFFF;
  --black:       #1A1410;

  --font-serif:  'Cinzel', Georgia, serif;
  --font-sans:   'Montserrat', -apple-system, sans-serif;

  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:      0 4px 24px rgba(59, 47, 42, 0.08);
  --shadow-lg:   0 12px 48px rgba(59, 47, 42, 0.12);

  --header-h:    80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--espresso);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--sage);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 146, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}

.btn--outline:hover {
  background: var(--espresso);
  color: var(--ivory);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(248, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1A1410;
  object-fit: cover;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--espresso);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--gold);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 146, 90, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(219, 197, 180, 0.15) 0%, transparent 50%),
    var(--ivory);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__emblem {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
}

.hero__emblem-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

.hero__emblem-ring::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--espresso);
  margin-bottom: 8px;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--sage);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Highlights ---- */
.highlights {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(184, 146, 90, 0.15);
  border-bottom: 1px solid rgba(184, 146, 90, 0.15);
}

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

.highlight {
  text-align: center;
  padding: 24px;
}

.highlight__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.highlight__icon svg {
  width: 100%;
  height: 100%;
}

.highlight h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--espresso);
}

.highlight p {
  font-size: 0.9rem;
  color: var(--sage);
}

/* ---- Collection ---- */
.collection {
  padding: 100px 0;
}

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

.collection__card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.collection__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.collection__image {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.collection__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.collection__card:hover .collection__image img {
  transform: scale(1.05);
}

.collection__image--1 {
  background: linear-gradient(135deg, var(--nude) 0%, var(--ivory) 50%, var(--sage) 100%);
}

.collection__image--2 {
  background: linear-gradient(160deg, var(--ivory) 0%, var(--nude) 40%, #C4B5A5 100%);
}

.collection__image--3 {
  background: linear-gradient(145deg, var(--sage) 0%, var(--nude) 60%, var(--ivory) 100%);
}

.collection__image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
}

.collection__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  z-index: 1;
}

.collection__info {
  padding: 28px 24px 32px;
}

.collection__info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.collection__info p {
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 16px;
}

.collection__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: letter-spacing var(--transition);
}

.collection__link:hover {
  letter-spacing: 0.15em;
}

/* ---- Philosophy ---- */
.philosophy {
  padding: 100px 0;
  background: var(--white);
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy__visual {
  position: relative;
  overflow: visible;
}

.philosophy__frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  padding: 12px;
  z-index: 1;
}

.philosophy__frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 146, 90, 0.4);
  pointer-events: none;
}

.philosophy__fabric {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, var(--nude) 0%, var(--ivory) 30%, var(--nude) 60%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
}

.philosophy__fabric::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.08) 8px,
    rgba(255,255,255,0.08) 9px
  );
}

.philosophy__emblem {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  overflow: visible;
}

.philosophy__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 5;
}

.philosophy__quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--espresso);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0;
}

.philosophy__text {
  color: var(--sage);
  margin-bottom: 40px;
}

.philosophy__values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy__value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.philosophy__value-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.philosophy__value h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.philosophy__value p {
  font-size: 0.85rem;
  color: var(--sage);
}

/* ---- About ---- */
.about {
  padding: 100px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__content p {
  color: var(--sage);
  margin-bottom: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about__feature {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(184, 146, 90, 0.12);
  transition: border-color var(--transition);
}

.about__feature:hover {
  border-color: var(--gold);
}

.about__feature-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.about__feature h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.about__feature p {
  font-size: 0.85rem;
  color: var(--sage);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  background: var(--espresso);
  color: var(--ivory);
  text-align: center;
}

.cta-banner__inner {
  max-width: 640px;
}

.cta-banner__emblem {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}

.cta-banner__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 0.95rem;
  color: var(--nude);
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-banner .btn--primary {
  background: var(--gold);
}

/* ---- Contact ---- */
.contact {
  padding: 100px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(184, 146, 90, 0.12);
  transition: all var(--transition);
}

.contact__channel:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__channel-icon svg {
  width: 24px;
  height: 24px;
}

.contact__channel h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact__channel p {
  font-size: 0.85rem;
  color: var(--sage);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid rgba(184, 146, 90, 0.2);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--nude);
}

/* ---- Footer ---- */
.footer {
  background: var(--espresso);
  color: var(--nude);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 24px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--ivory);
}

.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nude);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(219, 197, 180, 0.3);
  border-radius: 50%;
  color: var(--nude);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(219, 197, 180, 0.15);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(219, 197, 180, 0.6);
}

.footer__domain {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  color: var(--gold) !important;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .highlights__grid,
  .collection__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .philosophy__inner,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-h) + 32px) 32px 32px;
    background: var(--ivory);
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right var(--transition);
    gap: 24px;
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }

  .nav__toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  .hero__title {
    letter-spacing: 0.15em;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__emblem {
    width: 100px;
    height: 100px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   Editorial presentation — Meraya Moments
   ============================================ */
body {
  background:
    linear-gradient(rgba(184, 146, 90, 0.025) 1px, transparent 1px),
    var(--ivory);
  background-size: 100% 32px;
}

.hero {
  min-height: 920px;
  padding: calc(var(--header-h) + 30px) 0 70px;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero__bg {
  background:
    radial-gradient(circle at 16% 35%, rgba(219, 197, 180, 0.25), transparent 28%),
    linear-gradient(90deg, var(--ivory) 0 58%, #e7d7ca 58% 100%);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: start;
  gap: clamp(40px, 7vw, 100px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
  align-self: start;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 34px;
  padding: 0;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__eyebrow span + span {
  position: relative;
}

.hero__eyebrow span + span::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  max-width: 760px;
  margin: 0 0 28px;
  padding: 0;
  font-size: clamp(3.25rem, 6.1vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: none;
  text-align: left;
}

.hero__title em {
  display: block;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero__desc {
  max-width: 500px;
  margin: 0 0 38px;
  padding: 0;
  color: #6f625c;
  font-size: 1rem;
  line-height: 1.9;
}

.hero__actions {
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(59, 47, 42, 0.35);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__text-link span {
  color: var(--gold);
  transition: transform var(--transition);
}

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

.hero__signature {
  margin-top: 78px;
  font-family: var(--font-serif);
  color: var(--gold-dark);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  align-self: start;
  padding: 0 0 20px 20px;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0 30px 40px 0;
  border: 1px solid rgba(184, 146, 90, 0.55);
}

.hero__image-wrap {
  position: relative;
  height: min(72vh, 690px);
  min-height: 590px;
  overflow: hidden;
  background: var(--nude);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s cubic-bezier(.2,.6,.3,1);
}

.hero__image-wrap:hover img {
  transform: scale(1.025);
}

.hero__image-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 13px 18px;
  background: var(--ivory);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__seal {
  position: absolute;
  left: -48px;
  bottom: 80px;
  width: 98px;
  height: 98px;
  padding: 7px;
  border-radius: 50%;
  background: var(--espresso);
  box-shadow: 0 16px 40px rgba(59, 47, 42, 0.25);
  z-index: 3;
}

.hero__seal img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero__scroll {
  left: 30px;
  transform: none;
}

.occasion-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(184, 146, 90, 0.35);
  border-bottom: 1px solid rgba(184, 146, 90, 0.35);
  background: var(--espresso);
  color: var(--ivory);
}

.occasion-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.occasion-marquee span {
  padding: 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.occasion-marquee i {
  color: var(--gold-light);
  font-style: normal;
  font-size: 0.7rem;
}

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

.highlights {
  padding: 70px 0;
  background: #f1e9e0;
  border: 0;
}

.highlights__grid {
  gap: 0;
  counter-reset: merit;
}

.highlight {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  padding: 18px 38px;
  text-align: left;
  border-right: 1px solid rgba(184, 146, 90, 0.35);
  counter-increment: merit;
}

.highlight:last-child {
  border-right: 0;
}

.highlight::before {
  content: '0' counter(merit);
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.75rem;
}

.highlight__icon {
  display: none;
}

.highlight h3,
.highlight p {
  grid-column: 2;
}

.highlight h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.highlight p {
  max-width: 260px;
  font-size: 0.82rem;
  line-height: 1.7;
}

.collection {
  padding: 140px 0 160px;
  overflow: hidden;
}

.collection .section-header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
  gap: 70px;
  margin-bottom: 110px;
  text-align: left;
}

.collection .section-title {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.collection .section-title__line {
  white-space: nowrap;
}

.collection .section-desc {
  margin: 0 0 10px;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 90px 28px;
  align-items: start;
  counter-reset: moments;
}

.collection__card {
  position: relative;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  counter-increment: moments;
}

.collection__card:nth-child(1),
.collection__card:nth-child(5) {
  grid-column: 1 / span 7;
}

.collection__card:nth-child(2),
.collection__card:nth-child(6) {
  grid-column: 9 / span 4;
  margin-top: 150px;
}

.collection__card:nth-child(3) {
  grid-column: 1 / span 4;
  margin-top: 80px;
}

.collection__card:nth-child(4) {
  grid-column: 6 / span 7;
}

.collection__card:hover {
  transform: none;
  box-shadow: none;
}

.collection__image {
  height: 650px;
  background: var(--nude);
}

.collection__card:nth-child(2) .collection__image,
.collection__card:nth-child(3) .collection__image,
.collection__card:nth-child(6) .collection__image {
  height: 500px;
}

.collection__image::after {
  background: linear-gradient(to top, rgba(26, 20, 16, 0.2), transparent 35%);
}

.collection__image img {
  transition: transform 1s cubic-bezier(.2,.6,.3,1), filter 1s ease;
}

.collection__card:hover .collection__image img {
  transform: scale(1.025);
  filter: saturate(0.9);
}

.collection__badge {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  min-width: 120px;
  padding: 12px 18px;
  background: var(--ivory);
  color: var(--espresso);
  text-align: center;
}

.collection__info {
  position: relative;
  padding: 28px 10px 0 64px;
}

.collection__info::before {
  content: '0' counter(moments);
  position: absolute;
  top: 28px;
  left: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.collection__info h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.collection__info p {
  max-width: 440px;
  min-height: 48px;
}

.collection__link {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(184, 146, 90, 0.5);
  font-size: 0.68rem;
}

.philosophy {
  padding: 140px 0;
  background: #efe5dc;
  overflow: visible;
}

.philosophy__inner {
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(60px, 10vw, 140px);
  overflow: visible;
}

.philosophy__frame {
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
}

.philosophy__frame::before {
  inset: -18px 18px 18px -18px;
  border-color: var(--gold);
  z-index: 0;
}

.philosophy__frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.philosophy__emblem {
  right: -14px;
  bottom: -28px;
  z-index: 5;
}

.about__title {
  max-width: none;
}

.about__title-line {
  display: block;
  white-space: nowrap;
}

.philosophy__quote {
  border: 0;
  padding: 0;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.65;
}

.about {
  position: relative;
  padding: 140px 0;
}

.about::before {
  content: 'MERAYA';
  position: absolute;
  right: -20px;
  top: 45px;
  color: rgba(184, 146, 90, 0.07);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.about__feature {
  background: rgba(255,255,255,0.55);
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .hero__image-wrap {
    min-height: 500px;
    height: 64vh;
  }

  .collection__grid {
    max-width: none;
  }

  .philosophy__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .philosophy__content {
    order: 1;
    width: 100%;
  }

  .philosophy__visual {
    order: 2;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    padding: 18px 24px 40px 18px;
  }

  .philosophy__quote {
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: calc(var(--header-h) + 28px) 0 50px;
  }

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

  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__eyebrow {
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .hero__actions {
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: auto;
  }

  .hero__signature {
    display: none;
  }

  .hero__visual {
    width: calc(100% - 24px);
    margin-left: 24px;
    padding: 12px 0 16px 12px;
  }

  .hero__image-wrap {
    min-height: 500px;
    height: 70vh;
  }

  .hero__seal {
    left: -26px;
    bottom: 45px;
    width: 74px;
    height: 74px;
  }

  .hero__scroll {
    display: none;
  }

  .highlights__grid {
    max-width: none;
  }

  .highlight {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 146, 90, 0.3);
  }

  .highlight:last-child {
    border-bottom: 0;
  }

  .collection {
    padding: 100px 0;
  }

  .collection .section-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 65px;
  }

  .collection .section-desc {
    padding-left: 20px;
  }

  .collection__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: none;
  }

  .collection__card:nth-child(n) {
    grid-column: 1;
    margin-top: 0;
  }

  .collection__image,
  .collection__card:nth-child(2) .collection__image,
  .collection__card:nth-child(3) .collection__image,
  .collection__card:nth-child(6) .collection__image {
    height: min(125vw, 620px);
  }

  .collection__info {
    padding-left: 48px;
  }

  .philosophy {
    padding: 72px 0 100px;
    overflow: visible;
  }

  .philosophy__inner {
    gap: 40px;
    overflow: visible;
  }

  .philosophy__content {
    order: 1;
  }

  .philosophy__content .section-title {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    letter-spacing: 0.05em;
    line-height: 1.25;
    max-width: 14ch;
  }

  .philosophy__quote {
    font-size: clamp(1rem, 4.4vw, 1.2rem);
    line-height: 1.7;
    margin: 16px 0 20px;
  }

  .philosophy__text {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .philosophy__visual {
    order: 2;
    max-width: 260px;
    width: 68%;
    margin: 8px auto 0;
    padding: 14px 18px 36px 14px;
    overflow: visible;
  }

  .philosophy__frame::before {
    inset: -12px 12px 12px -12px;
  }

  .philosophy__emblem {
    width: 64px;
    height: 64px;
    right: -8px;
    bottom: -20px;
    padding: 0;
    z-index: 5;
  }

  .about__title {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  .about__title-line {
    white-space: nowrap;
  }

  .philosophy__values {
    gap: 18px;
  }

  .philosophy__value {
    gap: 14px;
  }

  .philosophy__value-num {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .occasion-marquee__track {
    animation-play-state: paused;
  }
}
