:root {
  --bg: #FCFAF8;
  --text: #2C1E16;
  --muted: #7A5E4D;
  --brand: #B85D19;
  --brand-dark: #8A430F;
  --surface: #ffffff;
  --border: #E8DDDA;
  --heading: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Inter", Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 30, 22, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 30, 22, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 30, 22, 0.12);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero {
  background: var(--surface);
  padding: 7rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  pointer-events: none;
}

.hero-bg-img {
  width: 48%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  opacity: 1;
}

.hero-bg-overlay {
  display: none;
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.kicker {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-size: 0.74rem;
}

.hero h1 {
  font-family: var(--heading);
  margin: 0 0 1.2rem;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.97;
  max-width: 840px;
  letter-spacing: 0.01em;
}

.hero p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-media-wrap {
  margin-top: 0.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fefdfb 0%, #f4eee6 100%);
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 12px 30px rgba(184, 93, 25, 0.08);
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: stretch;
}

/* ── Soothing Jali Decorative Panels ── */
.jali-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, #f6ede3 0%, #eedfcd 50%, #f6ede3 100%);
}

.jali-panel-left {
  border-right: 1px solid rgba(184, 93, 25, 0.1);
}

.jali-panel-right {
  border-left: 1px solid rgba(184, 93, 25, 0.1);
}

.jali-svg-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  gap: 0;
}

.jali-tile-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jali-tile {
  width: 88px;
  height: 88px;
  opacity: 0.65;
  filter: drop-shadow(0 4px 6px rgba(184, 93, 25, 0.1));
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.jali-panel:hover .jali-tile {
  opacity: 0.95;
  filter: drop-shadow(0 8px 16px rgba(184, 93, 25, 0.25));
}

/* corner ornament */
.jali-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.45;
  z-index: 4;
}

.jali-corner-tl {
  top: 10px;
  left: 10px;
}

.jali-corner-tr {
  top: 10px;
  right: 10px;
  transform: scaleX(-1);
}

.jali-corner-bl {
  bottom: 10px;
  left: 10px;
  transform: scaleY(-1);
}

.jali-corner-br {
  bottom: 10px;
  right: 10px;
  transform: scale(-1);
}

/* Classic serif caption label */
.jali-label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--heading);
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #a46132;
  z-index: 6;
  opacity: 0.85;
}

.hero-media-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-media {
  width: 100%;
  height: 100%;
  max-width: 580px;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 0.78rem 1.4rem;
  border-radius: 40px;
  border: 1px solid var(--brand);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Cinematic Interior Showcase (Sims Hilditch Inspired) ── */
.interior-showcase {
  position: relative;
  width: 100%;
  height: min(85vh, 800px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.interior-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 30, 22, 0.1), rgba(44, 30, 22, 0.45));
  z-index: 2;
}

.interior-image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.interior-caption {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 680px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.interior-eyebrow {
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

.interior-title {
  font-family: var(--heading);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 500;
  margin: 0 0 1.2rem;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.interior-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  max-width: 580px;
}

.btn-interior {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.9rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  border-radius: 40px;
}

.btn-interior:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.products-section,
.collections-section,
.projects-section,
.quote-section,
.about-section,
.contact-section,
.story-section,
.testimonial-section {
  padding: 5rem 0;
}

.section-head h2,
.quote-section h2,
.about-section h2,
.contact-section h2 {
  font-family: var(--heading);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--muted);
}

.eyebrow {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}

.craft-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #f2f1ee;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.craft-grid h3 {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.craft-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.collection-card {
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  min-height: 180px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.collection-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.collection-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--heading);
  font-size: 1.8rem;
}

.collection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.controls {
  margin: 1.4rem 0 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.controls input,
.controls select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: #fff;
  transition: var(--transition);
}

.controls input:focus,
.controls select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(184, 93, 25, 0.15);
}

.controls input {
  min-width: 260px;
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #ffffff;
  padding: 1.5rem;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 0.9rem;
}

.product-content h3 {
  margin: 0 0 0.4rem;
  font-family: var(--heading);
  font-size: 1.7rem;
  line-height: 1.1;
}

.product-actions {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.5rem;
}

.btn-small {
  border: 1px solid var(--brand);
  border-radius: 30px;
  padding: 0.6rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  transition: var(--transition);
  font-weight: 600;
}

.btn-small:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-small-outline {
  background: #fff;
  color: var(--brand);
}

.btn-small-outline:hover {
  background: var(--brand);
  color: #fff;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  color: var(--text);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.benefits {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.project-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--heading);
  font-size: 1.95rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story-grid h2 {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0.2rem 0 1rem;
}

.story-grid p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 580px;
}

.story-note {
  background: var(--surface);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(184, 93, 25, 0.1), var(--shadow-md);
  position: relative;
}

.story-note p {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--text);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.quote-form input,
.quote-form textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(184, 93, 25, 0.15);
}

.quote-form textarea,
.quote-form button {
  grid-column: 1 / -1;
}

.form-message {
  color: var(--muted);
  min-height: 1.2rem;
  margin-top: 0.8rem;
}

.contact-wrap {
  text-align: center;
  background: linear-gradient(135deg, #f3ece4 0%, #faeee7 100%);
  padding: 4rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 93, 25, 0.1);
  box-shadow: var(--shadow-md);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-secondary {
  background: var(--text);
  border-color: var(--text);
}

.btn-secondary:hover {
  background: #000;
  border-color: #000;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
  padding: 1.4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-style: italic;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-grid blockquote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--brand);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero-media-wrap {
    grid-template-columns: 120px 1fr 120px;
  }

  .jali-tile {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 720px) {

  .craft-grid,
  .collection-grid,
  .projects-grid,
  .story-grid,
  .testimonial-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .jali-panel {
    display: none;
  }

  .hero-tagline {
    position: static;
    transform: none;
    white-space: normal;
    text-align: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 1rem 1rem 0;
    backdrop-filter: none;
  }

  .hero-media {
    width: 100%;
    height: 360px;
    object-position: center center;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 0.8rem;
    font-size: 0.95rem;
  }
}

/* ── Custom Cursor ── */
body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--brand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, background 0.15s ease-out;
  mix-blend-mode: multiply;
  opacity: 0; /* hidden until mouse moves */
}

body.has-custom-cursor .custom-cursor {
  opacity: 0.8;
}

.custom-cursor.hovering {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(184, 93, 25, 0.3);
}

/* ── Scroll Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}