/* =============================================
   DECIYA — Homepage V3
   Editorial · Architectural · Tactile
   ============================================= */

/* =============================================
   Design tokens (homepage overrides)
   ============================================= */
:root {
  --linen:        #F7F3ED;
  --linen-mid:    #EDE7DC;
  --linen-deep:   #E0D8CC;
  --ink:          #191410;
  --ink-mid:      #5C5248;
  --ink-light:    #9A8F84;
  --accent:       #B8935A;
  --border-hair:  rgba(25, 20, 16, 0.08);
  --border-light: rgba(25, 20, 16, 0.13);
}

/* =============================================
   Image block — editorial placeholder system
   Warm tones, no decorative art inside
   ============================================= */
.img-block {
  display: block;
  overflow: hidden;
  position: relative;
  background: #D2C9BC;
}

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

/* Tone palette for placeholders */
.ib-linen   { background: #DAD3C8; }
.ib-stone   { background: #C8BFB2; }
.ib-sand    { background: #CBBFA8; }
.ib-warm    { background: #C4B89A; }
.ib-walnut  { background: #2A1C0E; }
.ib-deep    { background: #1A1208; }
.ib-charcoal{ background: #1C1C1C; }
.ib-pine    { background: #B4A480; }
.ib-outdoor { background: #8A9A82; }
.ib-dusk    { background: #322820; }

.img-block[data-caption]::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.img-block.light-caption[data-caption]::after {
  color: rgba(25, 20, 16, 0.25);
}

/* =============================================
   Editorial CTAs
   ============================================= */
.btn-ink {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--linen);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.btn-ink:hover { opacity: 0.78; }

.btn-ink-outline {
  display: inline-block;
  padding: 13px 34px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-ink-outline:hover {
  background: var(--ink);
  color: var(--linen);
  border-color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(25, 20, 16, 0.2);
  padding-bottom: 1px;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.link-arrow:hover {
  gap: 18px;
  border-color: rgba(25, 20, 16, 0.5);
}
.link-arrow-light {
  color: var(--linen);
  border-bottom-color: rgba(247, 243, 237, 0.3);
}
.link-arrow-light:hover { border-bottom-color: rgba(247, 243, 237, 0.7); }

/* =============================================
   Section labels — eyebrow type
   ============================================= */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 20px;
}
.section-label-light { color: rgba(247, 243, 237, 0.45); }

/* =============================================
   1. HERO
   ============================================= */
.hp-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  background: var(--linen);
  padding-top: 72px;
}

.hp-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
}

.hp-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ink-light);
  flex-shrink: 0;
}

.hp-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hp-hero-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 48px;
}

.hp-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hp-hero-note {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border-hair);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.06em;
}

.hp-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hp-hero-image .img-block {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media (max-width: 900px) {
  .hp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hp-hero-image {
    min-height: 56vw;
    position: relative;
    order: -1;
  }
  .hp-hero-image .img-block {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .hp-hero-content {
    padding: 56px 28px 72px;
  }
  .hp-hero-headline { font-size: clamp(44px, 10vw, 64px); }
}

@media (max-width: 480px) {
  .hp-hero-actions { flex-direction: column; }
  .hp-hero-content { padding: 48px 24px 64px; }
}

/* =============================================
   2. FEATURED PRODUCT — DECIYA Grid V4
   ============================================= */
.hp-feature {
  background: var(--linen);
  padding: 0 0 120px;
}

.hp-feature-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  margin-bottom: 64px;
}

.hp-feature-bar-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.hp-feature-bar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hp-feature-bar-nav a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.15s;
}
.hp-feature-bar-nav a:hover { color: var(--ink); }
.hp-feature-bar-nav a.active { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }

.hp-feature-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.hp-feature-images {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
  padding-right: 48px;
}

.hp-feature-img-main {
  aspect-ratio: 4/5;
  border-radius: 0;
}

.hp-feature-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hp-feature-img-detail {
  aspect-ratio: 3/2;
}

.hp-feature-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 32px 32px;
}

.hp-feature-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hp-feature-name {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hp-feature-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.hp-feature-pricing {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 40px;
}

.hp-feature-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}

.hp-feature-mrp {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: line-through;
  font-weight: 300;
}

.hp-feature-saving {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.hp-feature-specs {
  border-top: 1px solid var(--border-hair);
  margin-bottom: 40px;
}

.hp-spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-hair);
  font-family: var(--font-sans);
  font-size: 13px;
}

.hp-spec-key {
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

.hp-spec-val {
  font-weight: 400;
  color: var(--ink);
  text-align: right;
  letter-spacing: 0.02em;
}

.hp-feature-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-feature-tax {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .hp-feature-body {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }
  .hp-feature-images { padding-right: 0; margin-bottom: 48px; }
  .hp-feature-info { padding: 0; }
  .hp-feature-bar { padding: 20px 28px; }
}

/* =============================================
   3. PRODUCT COLLECTION
   ============================================= */
.hp-collection {
  background: var(--linen-mid);
  padding: 96px 0;
}

.hp-collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 48px;
}

.hp-collection-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hp-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-hair);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.hp-col-item {
  background: var(--linen-mid);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hp-col-item:hover { background: var(--linen); }

.hp-col-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.hp-col-img .img-block {
  width: 100%;
  height: 100%;
  transition: transform 0.55s ease;
}
.hp-col-item:hover .hp-col-img .img-block { transform: scale(1.025); }

.hp-col-info {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hp-col-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}

.hp-col-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hp-col-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hp-col-price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

.hp-col-mrp {
  font-size: 12px;
  color: var(--ink-light);
  text-decoration: line-through;
  font-weight: 300;
}

@media (max-width: 960px) {
  .hp-collection-grid { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .hp-collection-header { padding: 0 28px; }
}
@media (max-width: 480px) {
  .hp-collection-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .hp-collection-header { padding: 0 24px; align-items: flex-start; flex-direction: column; gap: 16px; }
}

/* =============================================
   4. HOME SCENES
   ============================================= */
.hp-scenes {
  background: var(--linen);
  padding: 120px 0;
}

.hp-scenes-header {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
}

.hp-scenes-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hp-scenes-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 340px;
  margin-left: auto;
}

.hp-scenes-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.hp-scene {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.hp-scene:first-child {
  grid-row: 1 / 3;
}

.hp-scene .img-block {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.hp-scene:hover .img-block { transform: scale(1.025); }

.hp-scene-img-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hp-scene-large { min-height: 520px; }
.hp-scene-small { min-height: 254px; }

.hp-scene-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 22px;
  background: linear-gradient(0deg, rgba(20, 15, 10, 0.55) 0%, transparent 100%);
}

.hp-scene-room {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.85);
  display: block;
  margin-bottom: 4px;
}

.hp-scene-note {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(247, 243, 237, 0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .hp-scenes-header { grid-template-columns: 1fr; gap: 16px; padding: 0 28px; }
  .hp-scenes-sub { margin-left: 0; max-width: 100%; }
  .hp-scenes-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; padding: 0 28px; }
  .hp-scene:first-child { grid-row: auto; }
  .hp-scene-large { min-height: 56vw; }
  .hp-scene-small { min-height: 44vw; }
}
@media (max-width: 480px) {
  .hp-scenes-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .hp-scenes-header { padding: 0 24px; }
  .hp-scene-large, .hp-scene-small { min-height: 72vw; }
}

/* =============================================
   5. MATERIALS & CRAFTSMANSHIP
   ============================================= */
.hp-materials {
  background: var(--ink);
  padding: 120px 0;
}

.hp-materials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.hp-mat-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hp-mat-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.hp-mat-img.tall { aspect-ratio: 3/4; grid-row: 1/3; }

.hp-mat-content { }

.hp-mat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.35);
  display: block;
  margin-bottom: 28px;
}

.hp-mat-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hp-mat-intro {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 243, 237, 0.55);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}

.hp-mat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-mat-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 243, 237, 0.08);
}
.hp-mat-item:last-child { border-bottom: 1px solid rgba(247, 243, 237, 0.08); }

.hp-mat-item-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.4);
  padding-top: 2px;
}

.hp-mat-item-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(247, 243, 237, 0.65);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hp-materials-inner { grid-template-columns: 1fr; gap: 56px; padding: 0 28px; }
  .hp-mat-images { max-width: 480px; }
}
@media (max-width: 480px) {
  .hp-materials-inner { padding: 0 24px; }
}

/* =============================================
   6. INSTALLATION
   ============================================= */
.hp-install {
  background: var(--linen-mid);
  padding: 120px 0;
}

.hp-install-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.hp-install-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.hp-install-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hp-install-intro {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 520px;
}

.hp-install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hp-install-step {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border-hair);
  padding-right: 48px;
}
.hp-install-step:first-child {
  padding-left: 0;
}
.hp-install-step:last-child {
  border-right: none;
  padding-left: 48px;
  padding-right: 0;
}
.hp-install-step:nth-child(2) {
  padding-left: 48px;
}

.hp-install-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hp-install-step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.hp-install-step-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}

.hp-install-note {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border-hair);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .hp-install-header { grid-template-columns: 1fr; gap: 20px; }
  .hp-install-steps { grid-template-columns: 1fr; }
  .hp-install-step,
  .hp-install-step:first-child,
  .hp-install-step:nth-child(2),
  .hp-install-step:last-child { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--border-hair); }
  .hp-install-step:last-child { border-bottom: none; }
  .hp-install-inner { padding: 0 28px; }
}
@media (max-width: 480px) { .hp-install-inner { padding: 0 24px; } }

/* =============================================
   7. TRUST
   ============================================= */
.hp-trust {
  background: var(--linen);
  padding: 96px 0;
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
}

.hp-trust-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.hp-trust-statement {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: 0.005em;
  margin-bottom: 32px;
}

.hp-trust-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hp-trust-item {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-trust-item::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hp-trust-item:first-child::before { display: none; }

@media (max-width: 480px) { .hp-trust-inner { padding: 0 24px; } }

/* =============================================
   8. FINAL CTA
   ============================================= */
.hp-cta {
  background: var(--ink);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}

.hp-cta-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.3);
  display: block;
  margin-bottom: 28px;
}

.hp-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.hp-cta-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 243, 237, 0.48);
  line-height: 1.75;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-linen {
  display: inline-block;
  padding: 14px 40px;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn-linen:hover { opacity: 0.85; }

@media (max-width: 480px) {
  .hp-cta-inner { padding: 0 24px; }
  .hp-cta-actions { flex-direction: column; }
}

/* =============================================
   Scroll-driven fade (lightweight)
   ============================================= */
.hp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hp-reveal.d1 { transition-delay: 0.1s; }
.hp-reveal.d2 { transition-delay: 0.2s; }
.hp-reveal.d3 { transition-delay: 0.3s; }
.hp-reveal.d4 { transition-delay: 0.4s; }
