/* ─── TOKENS ─── */
:root {
  --ink:     #0d0d0d;
  --paper:   #f2ede6;
  --cream:   #ede8e0;
  --pink:    #e03060;
  --pink-dk: #a81f45;
  --gold:    #c9a84c;
  --slate:   #1c2233;
  --mist:    #8a8680;
  --rule:    rgba(13,13,13,0.12);

  --tier-trades:    #3a5c3a;
  --tier-business:  #1c3a5c;
  --tier-ecommerce: #7a4a1a;
  --tier-wedding:   #8a2040;

  --content-max: 1440px;
  --gutter:      64px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── NAV ─── */
.nav-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: linear-gradient(to bottom, rgba(242,237,230,0.95) 60%, transparent);
  backdrop-filter: blur(2px);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-type {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
}

.logo-dot {
  color: var(--pink);
}

.nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-enquire:hover {
  opacity: 0.8;
}

.logo-type:hover {
  opacity: 0.8;
}

.nav-enquire {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 2px;
}


/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.contained {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  padding-bottom: var(--gutter);
}

.hero-img-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 0;
}

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

.hero-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--paper) 0%, rgba(242,237,230,0.5) 40%, transparent 70%);
  z-index: 1;
}

.hero-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.25) 0%, transparent 40%);
  z-index: 1;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(13,13,13,0.10);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  align-self: end;
  gap: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding-bottom: 8px;
}

.hero-headline em {
  font-style: italic;
  color: var(--pink);
}

.hero-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.8;
  color: var(--mist);
  max-width: 380px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  z-index: 0;
}

.btn-fill:hover::after {
  transform: translateX(0);
}

.btn-fill span {
  position: relative;
  z-index: 1;
}

/* ─── HERO BOTTOM ─── */
.hero-bottom {
   position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--rule);
  padding-top: 28px; margin-top: 40px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  font-family: var(--font-body);
}

.hero-stat-num sup {
  font-size: 22px;
  color: var(--pink);
  vertical-align: super;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  font-family: var(--font-mono);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--mist);
  flex-shrink: 0;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  font-family: var(--font-mono);
}

/* ─── ANIMATIONS ─── */
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 0.4; }
  50% { opacity: 1; }
}