/* =========================================================
   이상적일상 — One-page site
   Palette inspired by the brand PDF
========================================================= */
:root {
  --green-dark: #14271A;     /* primary deep forest green */
  --green-mid:  #1E3A28;
  --green-soft: #2C4A36;
  --cream:      #E8E5D2;     /* light beige sections */
  --cream-2:    #DEDAC4;
  --paper:      #F5F2E6;
  --gold:       #C7B889;     /* brand accent */
  --gold-2:     #B6A472;
  --ink:        #14271A;
  --muted:      #5C6B5E;
  --line:       rgba(20,39,26,.12);
  --line-light: rgba(255,255,255,.18);

  --maxw: 1200px;
  --gap:  clamp(20px, 4vw, 56px);

  --font-serif: "Nanum Myeongjo", "Apple SD Gothic Neo", serif;
  --font-sans:  "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.kicker.center { text-align: center; }
.kicker.light  { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--green-dark);
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--cream); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 56px;
}
.section-sub.center { text-align: center; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 39, 26, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-light);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 26.4px;          /* 22px * 1.2 — 20% larger than wordmark */
  width: auto;
  display: block;
}
.brand-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.brand-mark.small { color: var(--green-dark); font-size: 20px; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(232, 229, 210, 0.85);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #d6c79a; transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }   /* hide top "스마트스토어" CTA on mobile — already shown in hero */
}

/* ============ HERO ============ */
.hero {
  background: var(--green-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(199,184,137,0.08), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(199,184,137,0.05), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin: 0 0 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--cream);
}
.hero-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(232, 229, 210, 0.78);
  margin: 0 0 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 5;
  background: #f0f0e8;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(199,184,137,0.6);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 4 / 4; max-width: 480px; margin: 0 auto; }
  .hero-image img {
    object-position: center 70%;        /* shift up — show more of the plaque bottom */
    transform: scale(1.02);             /* +2% to absorb sub-pixel gap on right edge */
    transform-origin: center;
  }
  .hero-scroll { display: none; }
  /* Shrink hero CTA buttons by 20% on mobile */
  .hero-actions .btn {
    padding: 11px 19px;
    font-size: 12px;
    gap: 8px;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: #d6c79a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(199,184,137,0.25);
}
.btn-ghost {
  border-color: rgba(199,184,137,0.5);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(199,184,137,0.1);
  border-color: var(--gold);
}
.btn.big {
  padding: 18px 32px;
  font-size: 16px;
}

/* ============ INTRO ============ */
.intro {
  background: var(--paper);
  padding: 120px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.intro-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

.lead {
  font-size: 17px;
  line-height: 1.8;
  color: #3a463c;
  margin: 0 0 32px;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.intro-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--green-dark);
  font-weight: 500;
}
.intro-list span {
  font-family: var(--font-serif);
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 0.1em;
}

@media (max-width: 860px) {
  .intro { padding: 80px 0; }
  .two-col { grid-template-columns: 1fr; }
}

/* ============ GALLERY BAND ============ */
.gallery-band {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}
.gallery-band img {
  width: 100%;
  height: clamp(320px, 60vh, 640px);
  object-fit: cover;
  opacity: 0.92;
  filter: brightness(0.85);
}
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.gallery-caption p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--cream);
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ============ LINEUP ============ */
.lineup {
  background: var(--green-dark);
  color: var(--cream);
  padding: 120px 0;
}
.lineup .section-title { color: var(--cream); }
.lineup .section-sub { color: rgba(232,229,210,0.7); }

.line-block {
  margin-top: 80px;
  border-top: 1px solid var(--line-light);
  padding-top: 56px;
}
.line-head { margin-bottom: 40px; max-width: 720px; }
.line-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  border-radius: 999px;
  margin-bottom: 14px;
}
.line-tag.premium { background: var(--gold); color: var(--green-dark); }
.line-head h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream);
  margin: 0 0 12px;
  font-weight: 500;
}
.line-head p {
  color: rgba(232,229,210,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.product-grid {
  display: grid;
  gap: 28px;
}
.premium-grid { grid-template-columns: repeat(2, 1fr); }
.basic-grid   { grid-template-columns: repeat(3, 1fr); }

.product {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  color: var(--green-dark);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.25);
}
.product-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efece2;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product:hover .product-img img { transform: scale(1.04); }
.product-info { padding: 18px 20px 22px; }
.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-2);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.product h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--green-dark);
  line-height: 1.5;
}
.price { margin: 0; font-size: 16px; font-weight: 700; color: var(--green-dark); }

@media (max-width: 860px) {
  .lineup { padding: 80px 0; }
  .premium-grid, .basic-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .premium-grid, .basic-grid { grid-template-columns: 1fr; }
}

/* ============ USE CASES ============ */
.use {
  background: var(--green-dark);
  color: var(--cream);
  padding: 120px 0;
  border-top: 1px solid var(--line-light);
}
.use-grid {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr minmax(120px, 180px);
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}
.use-tags {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(232,229,210,0.85);
}
.use-tags.left  { text-align: right; align-items: flex-end; }
.use-tags.right { text-align: left;  align-items: flex-start; }
.use-tags span {
  border-bottom: 1px solid rgba(199,184,137,0.4);
  padding-bottom: 6px;
  width: max-content;
  letter-spacing: 0.02em;
}

.use-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.use-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: #1a1a1a;
}
.use-photo img { width:100%; height:100%; object-fit: cover; }

.use-foot {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: rgba(232,229,210,0.6);
  letter-spacing: 0.01em;
}

@media (max-width: 860px) {
  .use { padding: 80px 0; }
  .use-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .use-tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }
  .use-tags.left, .use-tags.right { text-align: center; align-items: center; }
}

/* ============ BULK ============ */
.bulk {
  background: var(--cream);
  padding: 120px 0;
}
.bulk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 56px 0;
}
.bulk-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(20,39,26,0.04);
}
.bulk-vol {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.bulk-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 16px;
  line-height: 1.1;
}
.bulk-rate { margin: 0; font-size: 18px; color: var(--green-dark); }
.bulk-rate strong {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--green-dark);
  margin-right: 4px;
}
.bulk-price {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.bulk-price em {
  font-style: normal;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 16px;
  margin-left: 4px;
}

/* CTA card variant for 20+ */
.bulk-card-cta {
  background: var(--green-dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.bulk-card-cta .bulk-vol  { color: rgba(232,229,210,0.6); }
.bulk-card-cta .bulk-num  { color: var(--cream); }
.bulk-card-cta .bulk-rate { color: var(--gold); font-family: var(--font-serif); font-size: 22px; margin-bottom: auto; }
.bulk-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: background .2s, transform .2s;
}
.bulk-cta-btn:hover {
  background: #d6c79a;
  transform: translateY(-1px);
}

.bulk-row-link {
  color: var(--green-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--green-dark);
  transition: color .2s, border-color .2s;
}
.bulk-row-link:hover {
  color: var(--gold-2);
  border-color: var(--gold-2);
}

.bulk-table-title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 32px 0 20px;
  color: var(--green-dark);
  font-weight: 700;
}
.bulk-table {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20,39,26,0.04);
}
.bulk-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1.4fr;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--green-dark);
}
.bulk-row:last-child { border-bottom: none; }
.bulk-head {
  background: rgba(20,39,26,0.04);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.bulk-row s { color: var(--muted); }
.bulk-row strong { font-family: var(--font-serif); font-size: 19px; }

@media (max-width: 720px) {
  .bulk { padding: 80px 0; }

  /* Keep 3 columns horizontal — make them compact */
  .bulk-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 40px 0;
  }
  .bulk-card {
    padding: 18px 12px;
    border-radius: 6px;
    text-align: center;
  }
  .bulk-vol  { font-size: 11px; margin: 0 0 4px; }
  .bulk-num  { font-size: 18px; margin: 0 0 10px; line-height: 1.15; }
  .bulk-rate { font-size: 13px; }
  .bulk-rate strong { font-size: 18px; margin-right: 2px; }
  .bulk-price {
    margin: 10px 0 0;
    padding-top: 10px;
    font-size: 11px;
    line-height: 1.4;
  }
  .bulk-price em { font-size: 12px; margin-left: 0; display: block; margin-top: 2px; }

  /* CTA card on mobile */
  .bulk-card-cta .bulk-rate { font-size: 13px; margin-bottom: 12px; }
  .bulk-cta-btn {
    margin-top: 8px;
    padding: 8px 6px;
    font-size: 11px;
    gap: 2px;
    line-height: 1.3;
  }

  /* Hide detailed table on mobile — cards alone are enough */
  .bulk-table-title,
  .bulk-table { display: none; }
}

/* ============ CRAFT ============ */
.craft {
  background: var(--cream-2);
  padding: 120px 0;
}
.craft-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1 / 1;
}
.cp { overflow: hidden; border-radius: 4px; background: #ccc; }
.cp img { width: 100%; height: 100%; object-fit: cover; }
.cp-1 { transform: translateY(20px); }
.cp-2 { transform: translateY(-12px); }
.cp-3 { transform: translateY(-12px); }
.cp-4 { transform: translateY(20px); }

.craft-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.craft-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.craft-stats strong {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green-dark);
  font-weight: 700;
}
.craft-stats span {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .craft { padding: 80px 0; }
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--green-dark);
  color: var(--cream);
  padding: 120px 0;
}
.reviews .section-title { color: var(--cream); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.review {
  background: rgba(232,229,210,0.04);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s, transform .25s;
}
.review:hover {
  background: rgba(232,229,210,0.08);
  transform: translateY(-3px);
}
.stars {
  color: #ffd166;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.review p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(232,229,210,0.92);
}
.reviewer {
  margin-top: auto;
  font-size: 12px;
  color: rgba(232,229,210,0.5);
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .reviews { padding: 80px 0; }
  .review-grid { grid-template-columns: 1fr; }
}

/* ============ CTA ============ */
.cta {
  background: var(--paper);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(199,184,137,0.08), transparent 60%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.cta-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.25;
  margin: 0 0 24px;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 48px;
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background: var(--green-dark);
  color: var(--gold);
}
.cta-buttons .btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 16px 32px rgba(20,39,26,0.25);
}
.cta-buttons .btn-ghost {
  color: var(--green-dark);
  border-color: rgba(20,39,26,0.3);
}
.cta-buttons .btn-ghost:hover {
  background: rgba(20,39,26,0.06);
  border-color: var(--green-dark);
}
.btn .arr { margin-left: 4px; transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

.ico-shop, .ico-talk {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}
.ico-shop {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7B889' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h18l-2 12H5L3 7Z'/><path d='M8 7V5a4 4 0 0 1 8 0v2'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.ico-talk {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314271A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M21 12a8 8 0 0 1-8 8H7l-4 3V12a8 8 0 0 1 18 0Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.brand-foot {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.brand-foot-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--green-dark);
  letter-spacing: -0.025em;
}
.brand-foot-tag {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--green-dark);
  color: rgba(232,229,210,0.6);
  padding: 40px 0;
  border-top: 1px solid var(--line-light);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left .brand-mark { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(232,229,210,0.4);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}
.footer-right {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.footer-right a {
  color: rgba(232,229,210,0.6);
  transition: color .2s;
}
.footer-right a:hover { color: var(--gold); }

@media (max-width: 540px) {
  .cta { padding: 90px 0; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}
