/* ============================================================
   ORIANA LA MARCA — Unified Brand + Media Kit Site
   Design: Editorial luxury, Mediterranean warmth
   ============================================================ */

:root {
  --gold: #a37a3e;
  --gold-light: #c4a265;
  --gold-dark: #8a6533;
  --cream: #faf8f5;
  --charcoal: #1a1a1a;
  --warm-white: #fffdf9;
  --soft-grey: #f0ece6;
  --text-light: #6b6560;
  --border-light: #e8e2da;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trirong', serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--gold-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-logo {
  font-family: 'Trirong', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.4s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.site-nav.scrolled .nav-logo { color: var(--charcoal); text-shadow: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.nav-links a:hover::after { width: 100%; }

.site-nav.scrolled .nav-links a { color: var(--charcoal); text-shadow: none; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
}

.site-nav.scrolled .nav-mobile-toggle span { background: var(--charcoal); }

/* ============================================================
   HERO — SLIDER
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(0.62);
  transform: scale(1.06);
  animation: heroSlideZoom 6s ease-out forwards;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes heroSlideZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(163, 122, 62, 0.18) 75%,
    rgba(100, 65, 15, 0.35) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 6rem;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-roles {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.92);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  line-height: 1.8;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(196, 162, 101, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-links a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-scroll .line {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 8px;
  background-clip: content-box;
  transition: background 0.35s, transform 0.35s;
}

.hero-dot.active {
  background: var(--gold-light);
  transform: scale(1.35);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-chevron {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 0.6; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */

.section {
  padding: 7rem 0;
}

.section-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(163, 122, 62, 0.08));
  pointer-events: none;
}

.about-text blockquote {
  font-family: 'Trirong', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold-light);
  padding: 1.25rem 1.75rem;
  margin: 2.25rem 0;
  line-height: 1.55;
  background: linear-gradient(to right, rgba(163, 122, 62, 0.06), transparent);
  position: relative;
}

.about-text blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold-light);
  opacity: 0.35;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: 'Trirong', serif;
  line-height: 1;
}

/* ============================================================
   NUMBERS STRIP
   ============================================================ */

.numbers-strip {
  background: var(--charcoal);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.numbers-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(163, 122, 62, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-left: 1px solid rgba(196, 162, 101, 0.2);
}

.number-item:first-child {
  border-left: none;
}

.number-value {
  font-family: 'Trirong', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.number-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   INTRO — Full media kit intro
   ============================================================ */

.intro-section {
  background: var(--warm-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.intro-text blockquote {
  font-family: 'Trirong', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold-light);
  padding: 1.25rem 1.75rem;
  margin: 2.25rem 0;
  line-height: 1.55;
  background: linear-gradient(to right, rgba(163, 122, 62, 0.06), transparent);
  position: relative;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

.intro-links-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.intro-link-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.intro-link-item a {
  font-size: 0.82rem;
  color: var(--charcoal);
  font-weight: 400;
}

.intro-link-item span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   BIO — Who is Oriana La Marca
   ============================================================ */

.bio-section {
  background: var(--cream);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.bio-image {
  position: relative;
  overflow: hidden;
}

.bio-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bio-image:hover img {
  transform: scale(1.03);
}

.bio-text .section-text {
  max-width: 100%;
}

.bio-continued {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.bio-continued .section-text {
  max-width: 100%;
}

.bio-quote {
  font-family: 'Trirong', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  margin-top: 2.5rem;
  padding: 0;
  border: none;
  background: none;
}

/* ============================================================
   PORTFOLIO — Restaurant / Lifestyle / Fashion
   ============================================================ */

.portfolio-section {
  background: var(--cream);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.portfolio-cat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 2px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

/* ============================================================
   VALUE — Investment + Added Value
   ============================================================ */

.value-section {
  background: var(--warm-white);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.value-block .value-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.value-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================
   SERVICES — Full rates from media kit
   ============================================================ */

.services {
  background: var(--charcoal);
  color: white;
}

.services .section-title { color: white; }

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196, 162, 101, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 3px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(163, 122, 62, 0.15);
  border-color: var(--gold);
}

.service-card h3 { color: white; }
.service-card .service-icon { color: var(--gold-light); }
.service-card .service-desc { color: rgba(255,255,255,0.65); }

.service-card.featured {
  border-color: var(--gold);
  background: rgba(163, 122, 62, 0.1);
}

.service-card.premium {
  grid-column: span 2;
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(163, 122, 62, 0.15) 0%, rgba(163, 122, 62, 0.05) 100%);
}

.service-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
}

.service-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-price {
  font-family: 'Trirong', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.service-note {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-includes {
  list-style: none;
  text-align: left;
  padding: 0;
}

.service-includes li {
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.service-includes li:last-child {
  border-bottom: none;
}

.service-includes li::before {
  content: '\2713';
  color: var(--gold-light);
  margin-right: 0.75rem;
  font-weight: 600;
}

.service-includes li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.include-label {
  flex: 1;
}

.include-price {
  color: var(--gold-light);
  font-weight: 400;
  font-size: 0.82rem;
}

.service-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 162, 101, 0.3);
  font-family: 'Trirong', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* ============================================================
   BRANDS — New section from media kit
   ============================================================ */

.brands {
  background: var(--charcoal);
  color: white;
}

.brands-header {
  text-align: center;
  margin-bottom: 3rem;
}

.brands .section-title { color: white; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.brand-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(196, 162, 101, 0.2);
  border-radius: 3px;
  transition: border-color 0.3s, background 0.3s;
}

.brand-item:hover {
  border-color: var(--gold);
  background: rgba(163, 122, 62, 0.08);
}

.brand-name {
  display: block;
  font-family: 'Trirong', serif;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 0.4rem;
}

.brand-detail {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  min-height: 1.2em;
}

.brand-type {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.brands .section-text { color: rgba(255,255,255,0.6); }

.brands-description {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
}

.brands-description p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* ============================================================
   STATS — New section from media kit
   ============================================================ */

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.stat-card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 3px;
}

.stat-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-light);
}

.stat-row strong {
  color: var(--charcoal);
  font-weight: 500;
}

.stat-big {
  font-family: 'Trirong', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card > p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.stat-big-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-bar-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 2.5rem;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

.stat-bar {
  height: 6px;
  background: var(--soft-grey);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  min-width: 4px;
}

/* ============================================================
   PRESS — New section from media kit
   ============================================================ */

.press {
  background: var(--warm-white);
}

.press-header {
  text-align: center;
  margin-bottom: 3rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.press-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  transition: border-color 0.3s;
}

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

.press-name {
  display: block;
  font-family: 'Trirong', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.press-detail {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.press-vogue .press-name {
  font-size: 2rem;
  font-style: italic;
}

/* Compact gallery grid (for supporting jewelry section) */
.gallery-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.compact .gallery-item {
  aspect-ratio: 1;
}

/* ============================================================
   CONTACT — New section
   ============================================================ */

.contact-section {
  background: var(--warm-white);
}

.contact-header {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 3px;
  text-align: center;
}

.contact-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card a {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

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

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-header .section-text {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 2px;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item:nth-child(3n+2) {
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(5n+3) {
  aspect-ratio: 5/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-item:hover {
  transform: rotate(var(--tilt, 0.6deg)) scale(1.01);
  z-index: 2;
  transition: transform 0.35s ease;
}

.gallery-item:nth-child(even):hover {
  transform: rotate(calc(var(--tilt, 0.6deg) * -1)) scale(1.01);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(26, 26, 26, 0.72));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.07em;
}

/* ============================================================
   JOURNAL
   ============================================================ */

.journal {
  background: var(--cream);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.journal-card {
  background: white;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(163, 122, 62, 0.12);
}

.journal-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journal-card:hover img {
  transform: scale(1.04);
}

.journal-card-body {
  padding: 1.5rem;
}

.journal-card .date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.journal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.journal-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.48);
  transform-origin: center center;
}

.cta-banner--kenburns .cta-banner-bg {
  animation: kenburns 14s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0)    translateY(0); }
  100% { transform: scale(1.08) translateX(-1%)  translateY(-1%); }
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-1px);
}

/* ============================================================
   QUOTE STRIP
   ============================================================ */

.quote-strip {
  background: linear-gradient(135deg, #7a5820 0%, #a37a3e 50%, #c4a265 100%);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.quote-strip-text {
  font-family: 'Trirong', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: white;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.footer-social a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .about-grid, .intro-grid, .bio-grid, .value-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image img, .intro-image img, .bio-image img { height: 450px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.premium { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .number-item:nth-child(2n+1) { border-left: none; }
  .number-item:nth-child(2) { border-left: 1px solid rgba(196, 162, 101, 0.2); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero-content { padding: 0 1.5rem 4rem; }
  .scroll-indicator { right: 1.5rem; }

  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card.premium { grid-column: span 1; }
  .portfolio-grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid.compact { grid-template-columns: repeat(2, 1fr); }
  .intro-links-row { flex-direction: column; gap: 1rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item:nth-child(3n+2),
  .gallery-item:nth-child(5n+3) {
    aspect-ratio: 1;
  }

  .gallery-item:hover {
    transform: none;
  }

  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .quote-strip { padding: 3rem 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible {
  opacity: 1;
}

.numbers-grid .number-item:nth-child(1) { transition-delay: 0s; }
.numbers-grid .number-item:nth-child(2) { transition-delay: 0.1s; }
.numbers-grid .number-item:nth-child(3) { transition-delay: 0.2s; }
.numbers-grid .number-item:nth-child(4) { transition-delay: 0.3s; }

/* Nav mobile menu */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 253, 249, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  gap: 1.5rem;
}

.nav-links.open a {
  color: var(--charcoal);
  font-size: 0.9rem;
  text-shadow: none;
}

/* ============================================================
   INNER PAGE HERO (shared by /about, /portfolio, /sicily)
   ============================================================ */

.inner-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  animation: kenburns 14s ease-in-out infinite alternate;
}

.inner-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 700px;
}

.inner-hero .hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.inner-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.sicily-hero {
  height: 80vh;
  min-height: 550px;
}

/* ============================================================
   ABOUT — STORY CHAPTERS
   ============================================================ */

.story-chapter {
  padding: 7rem 0;
}

.story-chapter:nth-child(even) {
  background: var(--cream);
}

.story-chapter--reverse .about-grid {
  direction: rtl;
}

.story-chapter--reverse .about-grid > * {
  direction: ltr;
}

.story-image-stack {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.story-image-stack img:first-child {
  width: 85%;
  height: 450px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.story-image-stack img:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 300px;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  border: 4px solid white;
}

.story-image-break {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.story-image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(163, 122, 62, 0.15) 50%,
    rgba(26, 26, 26, 0.3) 100%
  );
}

.story-image-break-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Trirong', serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-style: italic;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  padding: 0 2rem;
  text-align: center;
}

.story-image-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.story-image-trio img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.story-image-trio img:hover {
  transform: scale(1.03);
}

.story-video-section {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-video-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-video-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
}

.story-video-section .video-quote {
  position: relative;
  z-index: 2;
  font-family: 'Trirong', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  max-width: 600px;
  text-align: center;
  padding: 0 2rem;
  line-height: 1.5;
}

/* ============================================================
   PORTFOLIO — FILTER + GALLERY + LIGHTBOX
   ============================================================ */

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0 3rem;
  flex-wrap: wrap;
  position: sticky;
  top: 60px;
  z-index: 10;
  background: var(--warm-white);
}

.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.8rem;
}

.portfolio-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border-radius: 2px;
}

.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-gallery-item:hover img {
  transform: scale(1.08);
}

.portfolio-gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(26, 26, 26, 0.7));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.portfolio-gallery-item:hover .overlay {
  opacity: 1;
}

.portfolio-gallery-item .overlay-text {
  color: white;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

/* ============================================================
   SICILY — IMMERSIVE SECTIONS
   ============================================================ */

.sicily-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.sicily-intro .section-text {
  max-width: 100%;
  margin: 0 auto;
}

.sicily-intro blockquote {
  font-family: 'Trirong', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-dark);
  margin: 2.5rem 0;
  line-height: 1.5;
}

.sicily-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
  align-items: start;
}

.sicily-duo img:first-child {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.sicily-duo img:last-child {
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  margin-top: 2rem;
}

.sicily-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sicily-food-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.sicily-food-grid img:hover {
  transform: scale(1.03);
}

.sicily-full-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-top: 2rem;
  border-radius: 2px;
}

/* Color panels */
.color-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
}

.color-panel--reverse {
  direction: rtl;
}

.color-panel--reverse > * {
  direction: ltr;
}

.color-panel-image {
  overflow: hidden;
}

.color-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.color-panel-image:hover img {
  transform: scale(1.04);
}

.color-panel-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.color-panel-name {
  font-family: 'Trirong', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.color-panel-meaning {
  font-family: 'Trirong', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
}

.color-red { background: #faf5f5; }
.color-red .color-panel-name { color: #8b3a3a; }
.color-yellow { background: #faf8f0; }
.color-yellow .color-panel-name { color: #a37a3e; }
.color-green { background: #f5f8f5; }
.color-green .color-panel-name { color: #4a6b3a; }
.color-blue { background: #f5f7fa; }
.color-blue .color-panel-name { color: #3a5a7a; }

/* Tour photo strip */
.tour-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.tour-photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.tour-photo-strip img:hover {
  transform: scale(1.03);
}

/* ============================================================
   RESPONSIVE — INNER PAGES
   ============================================================ */

@media (max-width: 1024px) {
  .story-image-trio { grid-template-columns: repeat(2, 1fr); }
  .color-panel { grid-template-columns: 1fr; min-height: auto; }
  .color-panel-text { padding: 3rem 2rem; }
  .tour-photo-strip { grid-template-columns: repeat(2, 1fr); }
  .sicily-duo { grid-template-columns: 1fr; }
  .sicily-duo img:last-child { margin-top: 0; }
}

@media (max-width: 768px) {
  .inner-hero { height: 45vh; min-height: 320px; }
  .sicily-hero { height: 60vh; }
  .story-chapter { padding: 4rem 0; }

  .story-image-stack img:first-child { width: 100%; height: 350px; }
  .story-image-stack img:last-child { position: relative; width: 100%; height: 250px; border: none; margin-top: 1rem; }
  .story-image-stack { padding: 0; }

  .story-image-trio { grid-template-columns: 1fr; }
  .story-image-trio img { height: 220px; }
  .story-image-break { height: 35vh; background-attachment: scroll; }
  .story-video-section { height: 40vh; }

  .portfolio-filter-bar { gap: 0.5rem; top: 55px; padding: 1.5rem 0 2rem; }
  .filter-btn { padding: 0.55rem 1.1rem; font-size: 0.7rem; min-height: 44px; }
  .portfolio-gallery { grid-template-columns: repeat(2, 1fr); }

  .color-panel { grid-template-columns: 1fr; }
  .color-panel-text { padding: 2.5rem 1.5rem; }
  .color-panel-image img { height: 300px; }

  .sicily-food-grid img { height: 180px; }
  .sicily-full-image { height: 250px; }
  .tour-photo-strip { grid-template-columns: 1fr 1fr; }
  .tour-photo-strip img { height: 180px; }
}
