/* Galena Haus Concierge Boutique – shared styles */

:root {
  --haus-ink: #273242;
  --haus-gold: #b88333;
  --haus-cream: #fbf7f1;
  --haus-snow: #f4f6f9;
  --haus-deep: #1b212a;
  --shadow-soft: 0 24px 60px rgba(12, 25, 40, 0.18);
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #fbf7f1 40%, #f1ece4 100%);
  color: var(--haus-deep);
  text-rendering: optimizeLegibility;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 241, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid var(--haus-gold);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--haus-gold);
  background: radial-gradient(circle at 30% 0%, #ffffff 0, #f6efe4 55%, #ebddc7 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.brand-roof {
  position: absolute;
  top: 9px;
  width: 24px;
  height: 10px;
  border-top: 2px solid var(--haus-gold);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.brand-tree {
  position: absolute;
  top: 15px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 10px solid var(--haus-gold);
}

.brand-tree::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 5px;
  width: 6px;
  height: 9px;
  border-radius: 999px;
  background: var(--haus-gold);
}

.brand-letters {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Alegreya", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(39, 50, 66, 0.75);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.2rem 0 3.6rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  opacity: 0.2;
}

.hero-img {
  background-size: cover;
  background-position: center;
}

.hero-img-secondary {
  mix-blend-mode: multiply;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(39, 50, 66, 0.7);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Alegreya", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 0.4rem;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(39, 50, 66, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #273242, #151b24);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 24, 38, 0.48);
}

.btn.ghost {
  border-color: rgba(39, 50, 66, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

/* Hero showcase */
.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  border-radius: 1.8rem;
  background: rgba(251, 247, 241, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.hero-card-copy {
  padding: 1rem 1.25rem 1.3rem;
}

.hero-card-copy h2 {
  font-family: "Alegreya", "Times New Roman", serif;
  margin: 0 0 0.3rem;
}

/* Ribbon */
.ribbon {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.9);
}

.ribbon-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0 0.7rem;
  font-size: 0.85rem;
}

.ribbon-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 50, 66, 0.3);
}

.ribbon-text {
  color: rgba(27, 33, 42, 0.8);
}

/* Sections */
.section {
  padding: 3.4rem 0;
}

.section-light {
  background: #fbf7f1;
}

.section-snow {
  background: linear-gradient(to bottom, #f7fafc 0, #eef3f8 40%, #fbf7f1 100%);
}

.section-deep {
  background: radial-gradient(circle at top, #324156, #151b24 60%, #0d1117 100%);
  color: #f8f1e6;
}

.section-deep .eyebrow,
.section-deep .muted,
.section-deep .meta {
  color: rgba(248, 241, 230, 0.8);
}

.section-intro {
  max-width: 38rem;
  margin: 0.8rem auto 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.center {
  text-align: center;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.section h2 {
  font-family: "Alegreya", "Times New Roman", serif;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

/* Trays */
.tray-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.tray-card img {
  border-radius: 1.3rem;
}

/* Candle Bar */
.candle-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.candle-card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.candle-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.candle-copy {
  padding: 1.1rem 1.2rem 1.3rem;
}

/* Attire */
.attire-card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.attire-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.attire-copy {
  padding: 0.9rem 1.1rem 1.1rem;
}

/* Aspen Edit */
.edit-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.edit-card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.edit-img {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.edit-card figcaption {
  padding: 0.9rem 1.1rem 1.1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.edit-card strong {
  font-family: "Alegreya", "Times New Roman", serif;
}

/* Concierge & Instagram */
.visit-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.concierge-card ul {
  padding-left: 1.1rem;
}

.muted {
  color: rgba(27, 33, 42, 0.75);
}

.tiny {
  font-size: 0.78rem;
}

.insta-embed {
  margin-top: 1.6rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
  padding: 1.2rem 1.3rem;
}

/* Footer */
.site-footer {
  padding: 1.6rem 0 2.1rem;
  background: #10141a;
  color: #f4ede2;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.script-mark {
  font-family: "Alex Brush", cursive;
  font-size: 1.8rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: #f4ede2;
}

.footer-links a:hover {
  text-decoration: underline;
}

.dot {
  opacity: 0.55;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid,
  .grid-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-showcase {
    margin-top: 1.6rem;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .nav-wrap {
    justify-content: center;
  }

  .container {
    width: min(100% - 2rem, 780px);
  }
}

@media (max-width: 520px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Colisco capsule – Aspen-style cards */
.colisco-section {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.colisco-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 840px) {
  .colisco-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.colisco-card {
  background: #fbf7f1;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 50, 66, 0.18);
  box-shadow: 0 20px 48px rgba(12, 25, 40, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.colisco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(12, 25, 40, 0.26);
  border-color: rgba(39, 50, 66, 0.5);
}

.colisco-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: var(--haus-snow);
}

/* Image hooks – replace with actual Colisco product photos if desired */
.colisco-img-flannel {
  background-image: url('/assets/images/colisco-flannel-1.jpg');
}

.colisco-img-eco {
  background-image: url('/assets/images/colisco-eco-layer.jpg');
}

.colisco-img-tees {
  background-image: url('/assets/images/colisco-tees-tops.jpg');
}

.colisco-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.colisco-body h3 {
  font-size: 0.96rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin: 0;
}

.colisco-body .tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--haus-gold);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0.2rem 0 0.1rem;
}

.center {
  text-align: center;
}

.section-intro {
  max-width: 640px;
  margin: 0.4rem auto 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(27, 33, 42, 0.8);
}

.tiny-btn {
  padding-inline: 1.2rem;
  padding-block: 0.5rem;
  font-size: 0.7rem;
}


/* Subtle interactive reveal + smooth hover refinements */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.colisco-card:hover .colisco-img,
.tray-card:hover img,
.candle-card:hover img {
  transform: scale(1.02);
}

.colisco-img,
.tray-card img,
.candle-card img {
  transition: transform 0.3s ease;
}


/* Concierge form layout */
.concierge-form {
  background: rgba(18, 21, 26, 0.85);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.section-deep .concierge-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.25rem;
  margin-bottom: 1.25rem;
}

.field-grid label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field-grid label.full-width {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 12, 0.85);
  padding: 0.55rem 0.9rem;
  color: #f7f5f0;
  font-size: 0.9rem;
  outline: none;
}

.field-grid textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 120px;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: rgba(247, 245, 240, 0.6);
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem 0.5rem 0.2rem;
  border-radius: 12px;
  background: rgba(8, 9, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.option-list label {
  text-transform: none;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247, 245, 240, 0.85);
}

.option-list input[type="checkbox"] {
  width: auto;
}

.full-width-btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-note {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}
