@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,700&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --bg-h: 19;
  --bg-s: 44%;
  --bg-l: 7%;
  --background: hsl(var(--bg-h), var(--bg-s), var(--bg-l));
  
  --fg-h: 0;
  --fg-s: 0%;
  --fg-l: 96%;
  --foreground: hsl(var(--fg-h), var(--fg-s), var(--fg-l));
  
  --card-h: 14;
  --card-s: 40%;
  --card-l: 10%;
  --card: hsl(var(--card-h), var(--card-s), var(--card-l));
  --card-foreground: hsl(0, 0%, 96%);

  --primary-h: 44;
  --primary-s: 54%;
  --primary-l: 54%;
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-light: hsl(44, 60%, 65%);
  --primary-dark: hsl(44, 50%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);

  --muted-h: 20;
  --muted-s: 48%;
  --muted-l: 12%;
  --muted: hsl(var(--muted-h), var(--muted-s), var(--muted-l));

  --muted-fg-h: 30;
  --muted-fg-s: 25%;
  --muted-fg-l: 50%;
  --muted-foreground: hsl(var(--muted-fg-h), var(--muted-fg-s), var(--muted-fg-l));

  --border-h: 23;
  --border-s: 49%;
  --border-l: 16%;
  --border: hsl(var(--border-h), var(--border-s), var(--border-l));
  --border-subtle: hsl(23, 40%, 12%);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1280px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  color: inherit;
}

/* Layout Containers */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Typography Utilities */
.font-heading {
  font-family: var(--font-heading);
}

.font-sans {
  font-family: var(--font-sans);
}

.text-gold {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.25;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background-color: var(--primary);
  margin: 1.5rem 0;
}

.gold-rule.center {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 0 20px rgba(203, 168, 72, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--background);
  box-shadow: 0 0 20px rgba(203, 168, 72, 0.2);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: hsla(var(--bg-h), var(--bg-s), var(--bg-l), 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(203, 168, 72, 0.25);
  border: 1px solid hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(203, 168, 72, 0.45);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--foreground);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 3px;
}

.footer-logo-img {
  height: 84px;
  width: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.4);
  box-shadow: 0 0 24px rgba(203, 168, 72, 0.25);
  transition: transform 0.4s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.75);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-link.active {
  color: var(--primary);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: hsla(var(--bg-h), var(--bg-s), var(--bg-l), 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav .nav-link {
  font-size: 0.875rem;
  padding: 0.75rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 12s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    105deg,
    hsla(var(--bg-h), var(--bg-s), var(--bg-l), 0.94) 0%,
    hsla(var(--bg-h), var(--bg-s), var(--bg-l), 0.75) 55%,
    hsla(var(--bg-h), var(--bg-s), var(--bg-l), 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 245, 0.65);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--background));
}

/* Editorial Products Section */
.section-products {
  padding: 6rem 0;
  background-color: var(--background);
  position: relative;
}

@media (min-width: 1024px) {
  .section-products {
    padding: 9rem 0;
  }
}

.editorial-rows {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

@media (min-width: 1024px) {
  .editorial-rows {
    gap: 9rem;
  }
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .editorial-row {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .editorial-row.reverse {
    direction: rtl;
  }

  .editorial-row.reverse > * {
    direction: ltr;
  }
}

.editorial-image-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--card);
}

.editorial-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-image-box:hover img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  background-color: var(--primary);
  color: var(--background);
  font-weight: 500;
  z-index: 2;
}

.editorial-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.editorial-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  font-weight: 300;
  max-width: 420px;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.7);
  margin-top: 0.5rem;
}

.discover-line {
  display: block;
  height: 1px;
  width: 2rem;
  background-color: var(--primary);
  transition: width 0.4s ease;
}

.discover-link:hover {
  color: var(--primary);
}

.discover-link:hover .discover-line {
  width: 3.5rem;
}

/* Philosophy Section */
.section-philosophy {
  position: relative;
  padding: 7rem 0;
  background-color: var(--card);
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-philosophy {
    padding: 10rem 0;
  }
}

.philosophy-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
}

.philosophy-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.philosophy-quote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.philosophy-subtext {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Call to Action Section */
.section-cta {
  padding: 6rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .section-cta {
    padding: 9rem 0;
  }
}

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

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr auto;
  }
}

/* Collection Page Styles */
.collection-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .collection-hero {
    padding-top: 13rem;
    padding-bottom: 6rem;
  }
}

.filters-wrapper {
  padding-bottom: 3.5rem;
  background-color: var(--background);
}

.filter-divider {
  height: 1px;
  background-color: var(--border);
  margin-bottom: 2.5rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  background-color: transparent;
  transition: var(--transition-smooth);
}

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

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

.product-grid-section {
  padding-bottom: 7rem;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .product-grid-section {
    padding-bottom: 10rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: var(--border);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.product-card:hover {
  background-color: hsl(19, 44%, 8.5%);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--card);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  font-weight: 300;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
}

.product-meta {
  display: flex;
  flex-direction: column;
}

.product-weight {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--foreground);
}

.collection-note {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .collection-note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Our Story Page Styles */
.story-origin {
  padding: 6rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .story-origin {
    padding: 9rem 0;
  }
}

.story-origin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-origin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.story-founder-frame {
  position: relative;
}

.founder-img-box {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--card);
}

.founder-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-accent-box {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 66%;
  height: 66%;
  border: 1px solid hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.25);
  pointer-events: none;
  z-index: -1;
}

.story-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-pillars {
  padding: 6rem 0;
  background-color: var(--card);
}

@media (min-width: 1024px) {
  .section-pillars {
    padding: 9rem 0;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .pillar-card {
    border-top: none;
    border-left: 1px solid var(--border);
    padding: 2.5rem 2.5rem;
  }

  .pillar-card:first-child {
    border-left: none;
  }
}

.pillar-number {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--foreground);
}

.pillar-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  font-weight: 300;
}

/* Contact / Inquiries Page */
.contact-section {
  padding: 5rem 0 8rem;
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 380px;
    gap: 6rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  display: block;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--foreground);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(158, 128, 97, 0.4);
}

.form-input:focus {
  border-bottom-color: var(--primary);
}

.inquiry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.chip-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--muted-foreground);
  transition: var(--transition-smooth);
}

.chip-btn:hover {
  border-color: var(--primary);
  color: var(--foreground);
}

.chip-btn.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--background);
}

.form-success-box {
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeIn 0.6s ease;
}

.success-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.details-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.detail-value {
  font-size: 0.9375rem;
  color: rgba(245, 245, 245, 0.85);
}

/* Footer */
.footer {
  margin-top: auto;
  position: relative;
  background-color: var(--card);
  border-top: 1px solid hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.35);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.footer-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted-foreground);
  max-width: 420px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-domain {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(158, 128, 97, 0.6);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(158, 128, 97, 0.45);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modal for Inquiries */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary);
}
