/* ─────────────────────────────────────────────
   Timbr Studio — Global Styles
   Palette: warm cream, charcoal, oak, sand
   Typefaces: Cormorant Garamond + DM Sans
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ──────────────────────────── */
:root {
  --cream:      #F4EFE6;
  --cream-alt:  #EDE6D8;
  --charcoal:   #1A1A17;
  --dark:       #111110;
  --oak:        #8B7355;
  --oak-light:  #C4A882;
  --sand:       #C8BBAA;
  --sand-light: #DDD5C8;
  --white:      #FAFAF8;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ── Typography helpers ─────────────────── */
.label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak);
}

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

/* ── Navigation ─────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(26, 26, 23, 0.96);
  backdrop-filter: blur(12px);
  padding: 1.25rem 3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.nav-logo-img {
  height: 160px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: -38px;
  filter: invert(1) brightness(2);
  opacity: 0.92;
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 1;
}

.nav-logo-studio {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.6);
  align-self: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: -15px;
  filter: invert(1) brightness(2);
  opacity: 0.5;
}

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

.nav-links a {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

/* ── Hero ───────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  background-color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.45;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

/* Dark gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 16, 0.85) 0%,
    rgba(17, 17, 16, 0.2) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 3rem 5rem;
  max-width: 900px;
}

.hero-label {
  color: var(--oak-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--oak-light);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.6);
  max-width: 420px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--oak);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Section Intro ──────────────────────── */
.section-intro {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  border-bottom: 1px solid var(--sand-light);
}

.section-intro .intro-left .label {
  margin-bottom: 1.5rem;
}

.section-intro .intro-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-intro .intro-left h2 em {
  font-style: italic;
  color: var(--oak);
}

.section-intro .intro-right {
  padding-bottom: 0.5rem;
}

.intro-left--image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.idea-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.intro-right-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.intro-right-heading em {
  font-style: italic;
  color: var(--oak);
}

.section-intro .intro-right p {
  font-size: 1rem;
  color: #5A5A55;
  line-height: 1.8;
  max-width: 440px;
}

.section-intro-single {
  padding: 8rem 3rem;
  border-bottom: 1px solid var(--sand-light);
  max-width: 760px;
}

.section-intro-single .label {
  margin-bottom: 1.5rem;
}

.section-intro-single h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.section-intro-single h2 em {
  font-style: italic;
  color: var(--oak);
}

.section-intro-single p {
  font-size: 1rem;
  color: #5A5A55;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .section-intro-single {
    padding: 5rem 1.5rem;
  }
}

/* ── Products ───────────────────────────── */
.products {
  padding: 0;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--sand-light);
}

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

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

.product-image {
  position: relative;
  overflow: hidden;
  background-color: var(--cream-alt);
  min-height: 500px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

/* Placeholder gradient when no image */
.product-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.product-image-placeholder.linea-placeholder {
  background: linear-gradient(135deg, #E8E0D4 0%, #D4C8B8 40%, #C0B09A 100%);
}

.product-image-placeholder.terra-placeholder {
  background: linear-gradient(135deg, #D4C4A0 0%, #C0A878 40%, #A08050 100%);
}

.product-number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 0.875rem;
  color: rgba(26, 26, 23, 0.3);
  letter-spacing: 0.05em;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--cream);
}

.product-tag {
  margin-bottom: 1.5rem;
}

.product-info h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.product-info h2 em {
  font-style: italic;
  color: var(--oak);
}

.product-info .product-tagline {
  font-size: 1rem;
  color: #5A5A55;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--oak-light);
  padding-left: 1.25rem;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.spec-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #7A7A73;
}

.spec-item::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--oak);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 1rem 2rem;
  transition: background 0.25s, color 0.25s;
}

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

.btn-arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.25s var(--ease-out);
}

.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .btn-arrow {
  width: 28px;
}

/* ── Craft section ──────────────────────── */
.craft {
  padding: 8rem 3rem;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.craft .label {
  color: var(--oak-light);
  margin-bottom: 2rem;
}

.craft h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.craft h2 em {
  font-style: italic;
  color: var(--oak-light);
}

.craft-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.craft-right p {
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.65);
  line-height: 1.85;
}

.craft-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.craft-value {
  border-top: 1px solid rgba(200, 187, 170, 0.2);
  padding-top: 1.25rem;
}

.craft-value h4 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.craft-value p {
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.45);
  line-height: 1.65;
}

/* ── Contact ────────────────────────────── */
.contact {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  border-top: 1px solid var(--sand-light);
}

.contact-left .label {
  margin-bottom: 1.5rem;
}

.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--oak);
}

.contact-left p {
  font-size: 0.9375rem;
  color: #5A5A55;
  line-height: 1.8;
  max-width: 380px;
}

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

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

.form-group label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 0.75rem 0;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

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

.form-group textarea {
  resize: none;
  min-height: 100px;
  line-height: 1.7;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7355' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

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

.btn-submit {
  align-self: flex-start;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.25s, color 0.25s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--oak);
  border-color: var(--oak);
}

/* ── Footer ─────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 3rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(200, 187, 170, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-brand .wordmark span {
  font-style: italic;
  color: var(--oak-light);
}

.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.4);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(250, 250, 248, 0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  background: var(--dark);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200, 187, 170, 0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 250, 248, 0.25);
  letter-spacing: 0.05em;
}

/* ── Product page ───────────────────────── */
.product-hero {
  height: 85vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 16, 0.9) 0%,
    rgba(17, 17, 16, 0.15) 60%,
    transparent 100%
  );
}

.product-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 3rem 5rem;
}

.product-hero-content .label {
  color: var(--oak-light);
  margin-bottom: 1rem;
}

.product-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
}

.product-hero-content h1 em {
  font-style: italic;
  color: var(--oak-light);
}

.product-hero-content .product-sub {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.55);
  font-weight: 300;
  margin-top: 1rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 70vh;
  border-bottom: 1px solid var(--sand-light);
}

.product-detail-image {
  overflow: hidden;
  background: var(--cream-alt);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-body {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-body .label {
  margin-bottom: 1.5rem;
}

.product-detail-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.product-detail-body p {
  font-size: 0.9375rem;
  color: #5A5A55;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-light);
}

.spec-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-block dt {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak);
}

.spec-block dd {
  font-size: 0.9375rem;
  color: var(--charcoal);
  font-weight: 300;
}

/* ── Photo gallery ──────────────────────── */
.photo-gallery {
  display: flex;
  flex-direction: column;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-alt);
  border-bottom: 1px solid var(--sand-light);
}

.gallery-item:nth-child(even) {
  background: var(--charcoal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

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

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gallery-placeholder-line {
  width: 32px;
  height: 1px;
  background: var(--sand);
}

.gallery-item:nth-child(even) .gallery-placeholder-line {
  background: rgba(200, 187, 170, 0.3);
}

.gallery-placeholder-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}

.gallery-item:nth-child(even) .gallery-placeholder-label {
  color: rgba(200, 187, 170, 0.4);
}

/* ── Related / Other product ────────────── */
.other-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
  border-bottom: 1px solid var(--sand-light);
}

.other-product-image {
  overflow: hidden;
  background: var(--cream-alt);
  position: relative;
}

.other-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.other-product:hover .other-product-image img {
  transform: scale(1.04);
}

.other-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--cream-alt);
}

.other-product-info .label {
  margin-bottom: 1rem;
}

.other-product-info h3 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.other-product-info p {
  font-size: 0.9375rem;
  color: #5A5A55;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 2.5rem;
}

/* ── Animations ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 1.5rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }

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

  .section-intro,
  .contact,
  .craft {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 1.5rem;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .product-image { min-height: 55vw; }

  .product-info { padding: 3rem 1.5rem; }

  footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2.5rem;
  }

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

  .product-hero-content { padding: 0 1.5rem 4rem; }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-image { min-height: 55vw; }

  .product-detail-body { padding: 3rem 1.5rem; }

  .other-product { grid-template-columns: 1fr; }

  .other-product-info { padding: 3rem 1.5rem; }

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

  .craft-values { grid-template-columns: 1fr; }
}
