:root{
  --bg:#fafafa;
  --card:#ffffff;
  --border:#eee;
  --text:#222;
  --muted:#666;
  --accent:#222;
}

*{box-sizing:border-box;}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

header{
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:22px;
  text-align:center;
  font-weight:600;
  letter-spacing:.5px;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:48px 20px;
}

h1{
  font-weight:600;
  margin-bottom:12px;
  font-size:clamp(1.6rem,2.4vw,2.1rem);
}

h2{
  font-weight:600;
  margin:10px 0 6px;
  font-size:1.15rem;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
  margin-top:32px;
}

.box{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:8px;
  padding:20px;
  display:flex;
  flex-direction:column;
  transition:.25s ease;
}

.box:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.box img{
  width:100%;
  height:auto;
  border-radius:6px;
  margin-bottom:14px;
  background:#f2f2f2;
  object-fit:cover;
}

.tag{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:5px 11px;
  font-size:.72rem;
  border-radius:999px;
  margin-bottom:10px;
  width:fit-content;
  letter-spacing:.4px;
}

ul{
  padding-left:18px;
  margin:10px 0 18px;
}

.muted{
  color:var(--muted);
  font-size:.9rem;
}

.price{
  font-size:1.25rem;
  font-weight:600;
  margin:8px 0 14px;
}

.button{
  margin-top:auto;
  background:var(--accent);
  color:#fff;
  text-align:center;
  padding:12px;
  border-radius:6px;
  text-decoration:none;
  font-weight:500;
  transition:.2s ease;
}

.button:hover{
  background:#000;
  transform:translateY(-1px);
}

footer{
  text-align:center;
  padding:34px 20px;
  font-size:.85rem;
  color:var(--muted);
  border-top:1px solid var(--border);
  margin-top:30px;
}

@media (max-width:640px){
  .container{padding:34px 16px;}
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 180px;      /* adjust size */
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff; /* white background */
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-bottom: 1px solid #eee;
}

.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header .header-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.site-header .subheader {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-left {
  display: flex;
  flex-direction: column;
}

.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.header-icon {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.header-icon:hover {
  opacity: 0.7;
}


/* ── Enhancement layer on top of existing styles.css ── */

:root {
  --cream: #fdf8f2;
  --warm:  #f5ede0;
  --tan:   #e8d8c4;
  --brown: #8b6347;
  --deep:  #3d2314;
  --accent-warm: #c4743a;
  --green: #5a7054;
}

body {
  background: var(--cream);
}

/* ── HEADER enhancements ── */
.site-header {
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tan);
  box-shadow: none;
}
.site-header .header-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--deep);
  letter-spacing: 0.06em;
}
.site-header .subheader {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.03em;
  opacity: 1;
}
.header-icon {
  font-size: 1.3rem;
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, var(--warm) 0%, var(--cream) 60%);
  border-bottom: 1px solid var(--tan);
  padding: 60px 20px 50px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(61,35,20,0.12);
}
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 14px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-copy p {
  max-width: 560px;
  color: #7a6355;
  font-size: 0.97rem;
  margin-bottom: 22px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.pill-green  { background: var(--green); color: #fff; }
.pill-brown  { background: var(--deep);  color: #fff; }
.pill-outline { background: transparent; border: 1.5px solid var(--tan); color: var(--brown); }

/* ── SECTION LABEL ── */
.section-label {
  max-width: 1100px;
  margin: 48px auto 8px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #7a6355;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tan);
}

/* ── GRID ── */
.container { padding-top: 0; }
.grid { margin-top: 4px; }

/* ── CARD enhancements ── */
.box {
  border: 1px solid var(--tan);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.box:hover {
  box-shadow: 0 16px 48px rgba(61,35,20,0.12);
  transform: translateY(-5px);
}

/* image wrapper */
.box-image-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--warm);
}
.box-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transition: transform 0.5s ease;
}
.box:hover .box-image-wrap img {
  transform: scale(1.05);
}

/* clickable image link */
.image-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.image-link::after {
  content: 'View Details →';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61,35,20,0.5);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.image-link:hover::after { opacity: 1; }
.image-link img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* clickable h2 link — inherit all styles, no browser defaults */
.heading-link {
  text-decoration: none;
  color: inherit;
  font: inherit;
  transition: color 0.2s;
}
.heading-link:hover { color: var(--accent-warm); }

/* move tag inside image overlay */
.box .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--deep);
  z-index: 2;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.box .tag.popular { background: var(--accent-warm); }

.box-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 8px;
}
.box > p, .box-body > p {
  font-size: 0.88rem;
  color: #7a6355;
  margin-bottom: 14px;
}

ul {
  padding-left: 0;
  list-style: none;
}
ul li {
  font-size: 0.85rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--cream);
  color: #3d2314;
}
ul li:last-child { border-bottom: none; }

/* perks strip */
.perks {
  background: var(--warm);
  border-top: 1px solid var(--tan);
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.perks span {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
}

/* card footer */
.card-footer {
  padding: 16px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
}
.btn-group {
  display: flex;
  gap: 8px;
}
.button {
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.82rem;
  background: var(--deep);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.button:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
}
.button-ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--tan);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.button-ghost:hover {
  border-color: var(--brown);
  background: var(--warm);
}

/* ── FOOTER ── */
/* footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  border-top: none;
}  */
footer strong { color: rgba(255,255,255,0.9); }
 /* Footer */
    footer {
      background: var(--deep);
  color: rgba(255,255,255,0.6);
      padding: 3rem 5%;
      text-align: center;
      margin-top: 4rem;
    }
    
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
      text-align: left;
    }
    
    .footer-column h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
  border-bottom: none;
  padding: 0;
}
    
    .footer-column a {
      color: var(--cream);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }
    
    .footer-column a:hover {
      opacity: 1;
    }
    
    .copyright {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 249, 241, 0.2);
      opacity: 0.6;
    }
/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-pills { justify-content: center; }
  .hero-logo { width: 120px; }
}
@media (max-width: 640px) {
  .card-footer { flex-direction: column; align-items: flex-start; }
  .btn-group { width: 100%; }
  .button, .button-ghost { flex: 1; text-align: center; }
}
  
.premium-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
 
.box-horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
 
.box-image-horizontal {
  width: 300px;
  flex-shrink: 0;
  min-height: 240px;
}
 
.box-image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.box-horizontal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 1.5rem;
}
 
.tag-luxe {
  background-color: #7a6a9a;
  color: #fff;
}
 
.luxe-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
 
.luxe-items li {
  font-size: 13px;
  background: #f5f0eb;
  color: #5a4a3a;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #e0d8ce;
}
 
@media (max-width: 640px) {
  .box-horizontal {
    flex-direction: column;
  }
  .box-image-horizontal {
    width: 100%;
    min-height: 200px;
  }
}
/* ── Promotional Banner ─────────────────────────────── */
.promo-banner {
  background-color: #9b1010;          /* rich red, like the image */
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}

.promo-banner p {
  margin: 0;
  display: inline;
}

.promo-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.promo-banner a:hover {
  opacity: 0.85;
}

.promo-icon {
  margin-right: 6px;
}

.promo-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color 0.2s;
}

.promo-close:hover {
  color: #fff;
}