/* ============================================
   ZAR LIVING — Design System & Styles
   Luxury Rugs. Crafted by Artisans. Designed by You.
   ============================================ */

/* --- Custom Properties --- */
:root {
  --green: #1A3C34;
  --green-light: #234D43;
  --green-dark: #122A24;
  --gold: #B5914B;
  --gold-light: #C9A865;
  --gold-muted: rgba(181, 145, 75, 0.3);
  --cream: #F5F0EB;
  --cream-dark: #EDE6DE;
  --white: #FEFDFB;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --black-overlay: rgba(10, 10, 10, 0.45);
  --black-overlay-deep: rgba(10, 10, 10, 0.6);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Cormorant Garamond', 'Georgia', serif;
  --font-ui: 'Montserrat', 'Helvetica Neue', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  --max-width: 1200px;
  --max-width-narrow: 800px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }

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

.text-italic {
  font-style: italic;
  font-size: 1.2rem;
}

.text-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold);
  letter-spacing: 0.05em;
}

.text-subtitle {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--large {
  padding: var(--spacing-xxl) 0;
}

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

.section--green h2,
.section--green h3,
.section--green h4 {
  color: var(--gold);
}

.section--green p {
  color: var(--cream);
}

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

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

/* --- Gold Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: var(--spacing-md) auto;
  border: none;
}

.divider--wide {
  width: 120px;
}

.divider--left {
  margin-left: 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.7rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
}

.nav--scrolled {
  background: rgba(26, 60, 52, 0.97);
  padding: 0.5rem 2.5rem;
  backdrop-filter: blur(10px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition-fast);
}

.nav--scrolled .nav__logo-img {
  height: 38px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.1;
}

.nav__logo-text span {
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: 0.5em;
  display: block;
  margin-top: 0.1em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: var(--transition-fast);
}

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

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--cta {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-muted);
  padding-bottom: 2px;
}

.nav__link--cta:hover {
  border-bottom-color: var(--gold);
}

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

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  width: 26px;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-fast);
  border-radius: 1px;
}

.nav__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--green);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.nav__mobile--active {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition-fast);
}

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

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.55) 60%, rgba(10, 10, 10, 0.65) 100%),
    rgba(10, 10, 10, 0.15);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-md);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.15em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 4px 60px rgba(0,0,0,0.4);
}

.hero__title span {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.7em;
  margin-top: 0.4em;
  font-weight: 400;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--cream);
  margin-top: 2rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 15px rgba(0,0,0,0.5), 0 3px 40px rgba(0,0,0,0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-muted);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero for inner pages (shorter) */
.hero--inner {
  height: 50vh;
  min-height: 400px;
}

.hero--inner h1 {
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.hero--inner .hero__bg::after {
  background:
    radial-gradient(ellipse at center, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.7) 100%),
    rgba(10, 10, 10, 0.15);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--gold);
  color: var(--green);
}

.btn--filled {
  background-color: var(--green);
  color: var(--gold);
  border-color: var(--gold);
}

.btn--filled:hover {
  background-color: var(--gold);
  color: var(--green);
}

.btn--light {
  border-color: var(--cream);
  color: var(--cream);
}

.btn--light:hover {
  background-color: var(--cream);
  color: var(--green);
}

.link-arrow {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.link-arrow::after {
  content: '\2192';
  transition: var(--transition-fast);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.split__image {
  overflow: hidden;
  min-height: 500px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
}

.split__image img {
  width: 85%;
  max-height: 550px;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-xl);
}

/* --- Collection Cards --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-card__image {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 52, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(26, 60, 52, 0.95) 0%, rgba(26, 60, 52, 0.2) 70%);
}

.collection-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.collection-card__cta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.collection-card:hover .collection-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gallery Grid (Collections Page) --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-lg);
}

.filter-btn {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold-muted);
  background: transparent;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn--active {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(181, 145, 75, 0.08);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  transition: var(--transition);
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.gallery-item.hidden {
  display: none;
}

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 52, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(26, 60, 52, 0.7);
}

.gallery-item__info {
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__collection {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.gallery-item__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.gallery-item__cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  font-style: italic;
}

/* Collection description */
.collection-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal-light);
  display: none;
  line-height: 1.8;
}

.collection-desc.active {
  display: block;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 300;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.process-step__desc {
  font-size: 1.1rem;
  color: rgba(245, 240, 235, 0.75);
  font-style: italic;
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black-overlay-deep);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-md);
}

.cta-banner__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

/* --- Floating Inquiry Bar --- */
.inquiry-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: rgba(26, 60, 52, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.inquiry-bar--visible {
  transform: translateY(0);
}

.inquiry-bar__text {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--cream);
  font-size: 1.15rem;
}

.inquiry-bar__link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  padding: 0.4rem 1.2rem;
  transition: var(--transition-fast);
}

.inquiry-bar__link:hover {
  background-color: var(--gold);
  color: var(--green);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox--active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* --- Trusted By --- */
.trusted-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.trusted-list li {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* --- Contact Form --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.15rem;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--gold-muted);
  background: transparent;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition-fast);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.contact-info {
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--green);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.contact-info a {
  color: var(--gold);
  transition: var(--transition-fast);
}

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

.contact-info__item {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Thank you state */
.form-thankyou {
  display: none;
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.form-thankyou.active {
  display: block;
}

.form-thankyou h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--green-dark);
  color: var(--cream);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  text-align: center;
}

.footer__divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold-muted);
  margin: 0 auto 2rem;
}

.footer__emblem {
  width: 70px;
  height: auto;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.footer__logo span {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.55em;
  font-weight: 300;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245, 240, 235, 0.6);
  margin: 1rem 0 2rem;
}

.footer__contact {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 2rem;
}

.footer__contact a {
  color: var(--gold-muted);
  transition: var(--transition-fast);
}

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

.footer__address {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 235, 0.4);
  margin-bottom: 1.5rem;
}

.footer__copy {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 235, 0.3);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  /* Show hamburger, hide desktop links on all tablets */
  .nav__links {
    display: none !important;
  }

  .nav__hamburger {
    display: flex !important;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

  .split__image {
    min-height: 350px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Move contact sidebar above form on tablet/mobile */
  .contact-info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.6rem 1.2rem;
  }

  .nav--scrolled {
    padding: 0.4rem 1.2rem;
  }

  .nav__logo-img {
    height: 36px;
  }

  .nav--scrolled .nav__logo-img {
    height: 32px;
  }

  .nav__logo-text {
    font-size: 1.15rem;
    letter-spacing: 0.25em;
  }

  .nav__logo {
    gap: 0.5rem;
  }

  /* Hero adjustments */
  .hero__title {
    letter-spacing: 0.15em;
  }

  .hero__content {
    padding: var(--spacing-sm);
  }

  /* Inner page hero — prevent title overflow */
  .hero--inner h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    letter-spacing: 0.12em;
    padding: 0 0.5rem;
    word-break: break-word;
  }

  .hero--inner {
    height: 40vh;
    min-height: 300px;
  }

  .hero--inner .hero__tagline {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
    padding: 0 0.5rem;
  }

  /* Mobile menu text centering fix */
  .nav__mobile {
    padding: 5rem 2rem;
  }

  .nav__mobile a {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-align: center;
    display: block;
    width: 100%;
  }

  /* Collections & gallery */
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .collection-card {
    aspect-ratio: 4/3;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .gallery-item {
    padding: 0.4rem;
  }

  .gallery-filters {
    gap: 0.3rem;
    padding: 0 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.65rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .split__content {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .section--large {
    padding: var(--spacing-xl) 0;
  }

  /* Footer mobile */
  .footer {
    padding: var(--spacing-md) 0 var(--spacing-sm);
  }

  .footer__logo {
    font-size: 1.8rem;
    letter-spacing: 0.25em;
  }

  .footer__emblem {
    width: 55px;
    margin-bottom: 1rem;
  }

  .footer__tagline {
    font-size: 1rem;
    margin: 0.8rem 0 1.5rem;
  }

  .footer__contact {
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .footer__address {
    font-size: 0.65rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  /* Contact form mobile */
  .contact-info {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  /* Inquiry bar mobile */
  .inquiry-bar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
  }

  .inquiry-bar__text {
    font-size: 0.95rem;
  }

  /* CTA banner mobile */
  .cta-banner {
    height: 50vh;
    min-height: 300px;
  }

  .cta-banner__quote {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  /* Button mobile */
  .btn {
    padding: 1rem 2rem;
    font-size: 0.75rem;
  }

  /* Trusted list mobile */
  .trusted-list li {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 0.5rem 1rem;
  }

  .nav--scrolled {
    padding: 0.4rem 1rem;
  }

  .nav__logo-img {
    height: 32px;
  }

  .nav__logo-text {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .hero__title {
    letter-spacing: 0.1em;
  }

  .hero--inner h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    letter-spacing: 0.08em;
  }

  h1 {
    letter-spacing: 0.12em;
  }

  h2 {
    letter-spacing: 0.1em;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  /* Lightbox mobile */
  .lightbox {
    padding: 1rem;
  }

  .lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }
}
