/* ============================================
   OneZod - Space Aesthetics Website
   INTEGRATION · AESTHETICS · SMART SPACE SOLUTIONS
   Minimalist Luxury Design — Black & White
   Inspired by Aesop, Hermès, COS, Bottega Veneta
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  /* Color palette — pure monochrome luxury */
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-dark: #0a0a0a;
  --color-bg-dark-soft: #1a1a1a;
  --color-dark: #0a0a0a;
  --color-text: #2a2a2a;
  --color-muted: #4a4a4a;
  --color-border: #e8e8e8;
  --color-border-soft: #f0f0f0;
  --color-white: #ffffff;
  --color-accent: #0a0a0a;

  /* Typography — refined international luxury */
  --font-display: 'Italiana', 'Didot', 'Times New Roman', serif;
  --font-heading: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Inter', monospace;

  /* Sizing */
  --container-max: 1400px;
  --section-padding: 120px;

  /* Motion */
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;

  /* Elevation — minimal, almost none */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
p, .btn, .brand, .nav-menu a,
.hero-title, .hero-subtitle, .hero-tagline,
.page-header-title, .page-header-subtitle,
.section-header h2, .section-header p,
.catalogue-card-title, .catalogue-card-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

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

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

ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6.5vw, 6rem); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); font-weight: 400; }
h4 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 500; }

p { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #5a5a5a;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.accent-line {
  width: 40px;
  height: 1px;
  background: var(--color-dark);
  margin: 1.5rem auto;
  display: block;
}

.accent-line.left { margin-left: 0; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

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

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  background: transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.site-header.on-dark {
  color: var(--color-white);
}

.site-header.on-dark.scrolled {
  background: rgba(10, 10, 10, 0.95);
  color: var(--color-white);
  border-bottom-color: rgba(255,255,255,0.08);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-white);
  transition: var(--transition);
}

.site-header.scrolled .brand {
  color: var(--color-dark);
}

.brand:hover {
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  position: relative;
  padding: 6px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav-menu a.active {
  font-weight: 500;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
  letter-spacing: 0.28em;
}

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

.btn-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn-dark:hover {
  background: transparent;
  color: var(--color-dark);
}

.btn-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  display: inline-block;
}

.btn-link:hover {
  opacity: 0.6;
}

.btn-arrow::after {
  content: ' →';
  transition: var(--transition);
}

.btn-arrow:hover::after {
  content: ' →';
  margin-left: 6px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1920&q=85');
  opacity: 0.6;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 32px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-tagline .tag-full > span,
.hero-tagline .tag-short > span {
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
}

.hero-tagline .tag-full {
  display: inline;
}

.hero-tagline .tag-short {
  display: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3.5rem;
  letter-spacing: 0.04em;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '↓';
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

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

/* ===== Page Header (sub-pages) ===== */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: var(--color-bg-dark);
  overflow: hidden;
  padding: 140px 32px 80px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.page-header-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-header.left p {
  margin: 0;
}

/* ===== About Section (Home) ===== */
.about-section {
  background: var(--color-bg);
}

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

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

.about-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content > p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-dark);
  background: transparent;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Stats Section ===== */
.stats-section {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:first-child { border-left: 1px solid rgba(255,255,255,0.12); }

.stat-item:hover {
  background: rgba(255,255,255,0.03);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== Catalogue Section (Home) ===== */
.catalogue-section {
  background: var(--color-bg);
}

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

.catalogue-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-dark);
  transition: var(--transition);
}

.catalogue-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: var(--transition-slow);
  filter: grayscale(40%);
}

.catalogue-card:hover .catalogue-card-bg {
  transform: scale(1.06);
  opacity: 0.85;
  filter: grayscale(0%);
}

.catalogue-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
}

.catalogue-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  z-index: 2;
  color: var(--color-white);
}

.catalogue-card-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.catalogue-card-desc {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.catalogue-card-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 4px;
  display: inline-block;
  transition: var(--transition);
}

.catalogue-card:hover .catalogue-card-link {
  border-bottom-color: var(--color-white);
  letter-spacing: 0.3em;
}

/* ===== Projects Section ===== */
.projects-section {
  background: var(--color-bg-alt);
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-dark);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-dark);
}

.filter-btn.active::after {
  width: 100%;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  transition: var(--transition);
}

.project-card.hide {
  display: none;
}

.project-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.project-info {
  padding: 28px 8px 8px;
}

.project-location {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.project-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* ===== Catalogue Page ===== */
.catalogue-categories {
  background: var(--color-bg);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--color-border-soft);
  padding-bottom: 0;
  flex-wrap: wrap;
}

.category-tab {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  padding: 12px 4px 24px;
  position: relative;
  transition: var(--transition);
}

.category-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-dark);
  transform: scaleX(0);
  transition: var(--transition);
}

.category-tab:hover,
.category-tab.active {
  color: var(--color-dark);
}

.category-tab.active::after {
  transform: scaleX(1);
}

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

.product-card {
  cursor: pointer;
  transition: var(--transition);
}

.product-image {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  padding: 6px 12px;
  z-index: 2;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

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

/* ===== About Page ===== */
.story-section {
  background: var(--color-bg);
}

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

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(20%);
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--color-border);
  z-index: -1;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Philosophy Section */
.philosophy-section {
  background: var(--color-bg-alt);
}

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

.philosophy-image {
  position: relative;
  height: 560px;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.philosophy-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-border);
  z-index: -1;
}

.philosophy-content .eyebrow {
  color: var(--color-dark);
  letter-spacing: 0.35em;
}

.philosophy-content h2 {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.philosophy-content p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Team Section */
.team-section {
  background: var(--color-bg);
}

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

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

.team-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 24px;
  filter: none !important;
}

.team-card:hover .team-image {
  filter: none !important;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 0.75rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.team-bio {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* Designers Section */
.designers-section {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.designers-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.designers-intro h2 {
  color: var(--color-white);
}

.designers-intro p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.designer-card {
  text-align: center;
  position: relative;
}

.designer-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  margin-bottom: 20px;
  filter: none !important;
}

.designer-card:hover .designer-image {
  filter: none !important;
}

.designer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.designer-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-white);
}

.designer-style {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== Blog Page ===== */
.blog-section {
  background: var(--color-bg);
  padding: 80px 0 120px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.blog-card {
  cursor: pointer;
  transition: var(--transition);
}

.blog-image {
  display: block;
  height: 220px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--color-bg-alt);
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transition: var(--transition-slow);
  display: block;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.blog-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
  padding-top: 4px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  line-height: 1.35;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  opacity: 0.65;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 120px;
}

.widget {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border-soft);
}

.widget:last-child {
  border-bottom: none;
}

.widget-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.widget ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  font-size: 0.95rem;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
}

.widget ul li a:hover {
  color: var(--color-dark);
  padding-left: 8px;
}

.widget ul li a span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.tag-cloud a:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

/* ===== Contact Page ===== */
.contact-section {
  background: var(--color-bg);
  padding: 100px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-block {
  margin-bottom: 32px;
}

.contact-block .label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.contact-block .value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-dark);
}

.contact-block .value a {
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.contact-block .value a:hover {
  border-bottom-color: var(--color-dark);
}

.contact-form {
  background: var(--color-bg-alt);
  padding: 48px;
}

.contact-form .form-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

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

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

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

.form-submit {
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand .brand {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.footer-contact-item {
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.footer-contact-item strong {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.05em;
}

.footer-bottom .footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

/* ===== Fade-in Animation =====
   CRITICAL: Default state is FULLY VISIBLE. Animation only kicks in when
   JS has confirmed the browser can support IntersectionObserver and has
   successfully bound the handler. This guarantees that real mobile browsers
   (slow JS parse, late main.js load, blocked scripts) NEVER hide content. */
.fade-in {
  opacity: 1;
  transform: none;
}

html.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* Honor user preference: skip animation for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  html.js .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Responsive ===== */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 90px;
  }

  .about-grid,
  .story-grid,
  .philosophy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

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

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

  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-left: 1px solid rgba(255,255,255,0.12);
  }

  /* Scale down fixed heights on tablet */
  .about-image img { height: 440px; }
  .story-image img { height: 460px; }
  .philosophy-image { height: 440px; }
  .catalogue-card { height: 440px; }
  .project-image { height: 360px; }
  .product-image { height: 300px; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  /* Container & spacing */
  .container,
  .header-inner {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  /* Header */
  .site-header {
    padding: 18px 0;
  }
  .site-header.scrolled {
    padding: 12px 0;
  }

  .brand {
    font-size: 1.5rem;
    letter-spacing: 0.14em;
  }

  /* Mobile navigation */
  .menu-toggle {
    display: block;
    z-index: 101;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
    gap: 28px;
    border-top: none;
    z-index: 100;
    overflow-y: auto;
  }

  .site-header.on-dark .nav-menu {
    background: var(--color-bg-dark);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    padding: 0 6px;
    text-align: center;
  }

  .hero-tagline .tag-full {
    display: none;
  }

  .hero-tagline .tag-short {
    display: inline;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7.5vw, 2.6rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    padding: 0 4px;
    max-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    padding: 0 6px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.68rem;
  }

  .hero-scroll {
    bottom: 24px;
    font-size: 0.6rem;
  }

  /* Page header */
  .page-header {
    min-height: 50vh;
    padding: 130px 20px 60px;
  }

  .page-header-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .page-header-subtitle {
    font-size: 1.05rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .btn:hover {
    letter-spacing: 0.22em;
  }

  /* About / Story / Philosophy */
  .about-grid,
  .story-grid,
  .philosophy-grid {
    gap: 40px;
  }

  .about-image img,
  .story-image img {
    height: 340px;
  }

  .philosophy-image {
    height: 340px;
  }

  .story-image::before {
    top: -12px;
    left: -12px;
  }

  .philosophy-image::after {
    bottom: -16px;
    right: -16px;
  }

  .about-content > p,
  .story-content p,
  .philosophy-content p {
    font-size: 0.95rem;
  }

  /* Feature list */
  .feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Stats */
  .stats-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-item,
  .stat-item:nth-child(3) {
    border-right: none;
    border-left: none;
    padding: 28px 16px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .stat-number {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
  }

  /* Catalogue cards (home) */
  .catalogue-grid,
  .projects-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalogue-card {
    height: 380px;
  }

  .catalogue-card-content {
    padding: 28px 24px;
  }

  .catalogue-card-title {
    font-size: 1.8rem;
  }

  /* Product grid */
  .products-grid {
    gap: 32px 0;
  }

  .product-image {
    height: 280px;
  }

  /* Project cards */
  .project-image {
    height: 300px;
  }

  .project-info {
    padding: 20px 4px 4px;
  }

  .project-title {
    font-size: 1.35rem;
  }

  /* Projects filter */
  .projects-filter {
    gap: 24px;
    margin-bottom: 40px;
  }

  .filter-btn {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  /* Category tabs */
  .category-tabs {
    gap: 28px;
    margin-bottom: 50px;
  }

  .category-tab {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  /* Team */
  .team-grid,
  .designers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .team-name {
    font-size: 1.5rem;
  }

  .team-bio {
    font-size: 0.88rem;
  }

  /* Designers section */
  .designers-intro {
    margin-bottom: 50px;
  }

  /* Blog */
  .blog-section {
    padding: 50px 0 80px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-image {
    height: 220px;
  }

  .blog-title {
    font-size: 1.3rem;
  }

  .sidebar {
    position: static;
  }

  /* Contact */
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .contact-form .form-title {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  /* Footer */
  .site-footer {
    padding: 60px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 50px;
  }

  .footer-brand .brand {
    font-size: 1.7rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 28px;
  }

  .footer-bottom .footer-tagline {
    font-size: 0.9rem;
  }

  /* Eyebrow labels */
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}

/* ---- Small phones (≤480px) ---- */
@media (max-width: 480px) {
  :root {
    --section-padding: 50px;
  }

  .container,
  .header-inner {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  /* Brand & nav */
  .brand {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }

  .nav-menu a {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  /* Hero */
  .hero {
    padding: 90px 0 50px;
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    word-spacing: 3px;
    line-height: 1.6;
    padding: 0 6px;
    max-width: calc(100vw - 36px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-tagline .tag-full {
    display: none;
  }

  .hero-tagline .tag-short {
    display: inline;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
    padding: 0 6px;
    max-width: calc(100vw - 36px);
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 8px;
    line-height: 1.5;
  }

  .hero-buttons {
    max-width: 100%;
  }

  /* Page header */
  .page-header {
    padding: 100px 16px 40px;
    min-height: 45vh;
  }

  .page-header-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-header-subtitle {
    font-size: 0.95rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 22px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .btn:hover {
    letter-spacing: 0.18em;
  }

  /* Images — compact heights */
  .about-image img,
  .story-image img {
    height: 260px;
  }

  .philosophy-image {
    height: 260px;
  }

  .catalogue-card {
    height: 320px;
  }

  .catalogue-card-content {
    padding: 24px 20px;
  }

  .catalogue-card-title {
    font-size: 1.5rem;
  }

  .catalogue-card-desc {
    font-size: 0.9rem;
  }

  .product-image {
    height: 240px;
  }

  .project-image {
    height: 260px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:nth-child(odd) {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 24px 16px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  /* Team — single column */
  .team-grid,
  .designers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-image,
  .designer-image {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-name {
    font-size: 1.4rem;
  }

  /* Category tabs */
  .category-tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .category-tab {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    padding: 8px 2px 18px;
  }

  /* Projects filter */
  .projects-filter {
    gap: 16px;
  }

  .filter-btn {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  /* Blog */
  .blog-image {
    height: 180px;
  }

  .blog-title {
    font-size: 1.15rem;
  }

  .blog-excerpt {
    font-size: 0.88rem;
  }

  /* Contact */
  .contact-form {
    padding: 24px 18px;
  }

  .contact-form .form-title {
    font-size: 1.3rem;
  }

  .contact-block .value {
    font-size: 1.15rem;
  }

  .contact-info > p {
    font-size: 0.92rem;
  }

  /* Footer */
  .site-footer {
    padding: 50px 0 28px;
  }

  .footer-brand .brand {
    font-size: 1.5rem;
  }

  .footer-brand p {
    font-size: 0.88rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .footer-bottom .footer-tagline {
    font-size: 0.82rem;
    letter-spacing: 0.3em;
  }

  /* Accent line */
  .accent-line {
    width: 30px;
    margin: 1rem auto;
  }

  /* Feature items */
  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .feature-text h4 {
    font-size: 1.05rem;
  }

  .feature-text p {
    font-size: 0.85rem;
  }
}

/* ---- Extra small phones (≤375px) ---- */
@media (max-width: 375px) {
  .container,
  .header-inner {
    padding: 0 14px;
  }

  .brand {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }

  .hero-tagline {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    line-height: 1.7;
    padding: 0 4px;
    max-width: calc(100vw - 32px);
  }

  .hero-tagline span {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    line-height: 1.15;
    padding: 0 4px;
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    padding: 0 6px;
    max-width: calc(100vw - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    width: calc(100% - 24px);
    max-width: 280px;
  }

  .hero-buttons .btn {
    padding: 12px 18px;
    font-size: 0.58rem;
  }

  .page-header-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .section-header h2 {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .btn {
    padding: 11px 18px;
    font-size: 0.58rem;
  }

  .catalogue-card {
    height: 280px;
  }

  .catalogue-card-content {
    padding: 20px 16px;
  }

  .catalogue-card-title {
    font-size: 1.3rem;
  }

  .product-image {
    height: 200px;
  }

  .about-image img,
  .story-image img,
  .philosophy-image {
    height: 220px;
  }

  .contact-form {
    padding: 20px 14px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-social a svg {
    width: 14px;
    height: 14px;
  }
}
/* ================================================
   Services Page Styles
   ================================================ */

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

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: var(--color-text);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-number {
  font-family: var(--font-display), serif;
  font-size: 3rem;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading), serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding: 0.35rem 0 0.35rem 1.25rem;
  border-top: 1px solid var(--color-border);
  position: relative;
}

.service-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--color-text);
}

/* Divisions Grid */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.division-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.division-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.division-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.division-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.division-card:hover .division-image img {
  transform: scale(1.05);
}

.division-content {
  padding: 1.75rem;
}

.division-content h3 {
  font-family: var(--font-heading), serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.division-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  position: relative;
}

.process-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display), serif;
  font-size: 1rem;
  z-index: 1;
}

.process-content h4 {
  font-family: var(--font-heading), serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.process-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
  background: var(--color-text);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.cta-content h2 {
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Services Page Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card { padding: 2rem 1.5rem; }
  .divisions-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { text-align: center; }
}

@media (max-width: 480px) {
  .service-card { padding: 1.5rem 1rem; }
  .service-number { font-size: 2.25rem; }
  .service-card h3 { font-size: 1.25rem; }
  .process-marker { width: 32px; height: 32px; font-size: 0.85rem; }
  .process-timeline::before { left: 15px; }
  .process-step { gap: 1rem; }
  .process-content h4 { font-size: 1.05rem; }
  .cta-section { padding: 3.5rem 0; }
}
