/* Cape Cod Lodging Network - elegant coastal lodging refresh
   Drop-in replacement for: /assets/css/style.css
   Mood: refined, warm, airy, and a little more luxurious.

   TABLE OF CONTENTS
   01. Theme variables
   02. Base/reset
   03. Layout containers
   04. Header/navigation
   05. Filters and A-Z index
   06. Listing cards, badges, and buttons
   07. Promo cards, loading, and banners
   08. Featured lodging page
   09. Get Featured / upgrade page
   10. Submit Featured Lodging page
   11. Footer and responsive refinements
*/

/* ---------- 01. Theme variables ---------- */
:root{
  --site-bg: #f6f1ea;
  --site-bg-soft: #efe7dc;
  --site-paper: #fffdfa;
  --site-paper-warm: #fbf7f1;
  --site-ink: #352b25;
  --site-muted: #6f6055;

  --site-main: #7b6758;        /* warm taupe */
  --site-deep: #5a483d;        /* deep driftwood */
  --site-deeper: #43352d;      /* espresso brown */
  --site-accent: #b99661;      /* brushed brass */
  --site-accent-soft: #d7c0a0; /* pale gold */
  --site-sea: #9aaea8;         /* subtle coastal mist */

  --page-bg: radial-gradient(circle at top, #fbf8f4 0%, var(--site-bg) 58%, #eee5d9 100%);
  --page-text: var(--site-ink);

  --header-grad-start: #8d7968;
  --header-grad-mid: #735e51;
  --header-grad-end: #56443a;
  --header-title: #fffaf4;
  --header-subtitle: #f2e4d0;

  --nav-bg: rgba(67, 53, 45, .94);
  --nav-border: rgba(255,255,255,.10);
  --nav-link: #fff7ea;
  --nav-link-hover: #ffffff;

  --card-bg: rgba(255,255,255,.92);
  --card-border: rgba(90,72,61,.12);
  --card-shadow: rgba(59,43,33,.12);
  --card-title: var(--site-deeper);

  --chip-bg: #ebe1d4;
  --chip-bg-hover: #e0d3c2;
  --chip-text: var(--site-deep);

  --btn-bg: var(--site-deep);
  --btn-bg-hover: var(--site-deeper);
  --btn-text: #fffaf4;

  --footer-bg: #43352d;
  --footer-text: #f7efe4;
  --footer-link: #f1d9b4;
  --footer-link-hover: #ffffff;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 10px 30px rgba(67,53,45,.08);
  --shadow-card: 0 14px 30px rgba(67,53,45,.10);
}

/* ---------- 02. Base/reset ---------- */
*{ box-sizing:border-box; }

html{
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--page-bg);
  color: var(--page-text);
  line-height: 1.58;
  font-size: 17px;
  font-weight: 400;
}

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

a{
  color: var(--site-deep);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

a:hover{
  color: var(--site-deeper);
  text-decoration: underline;
}

/* ---------- 03. Layout containers ---------- */
.container{
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 18px 34px;
}

.share-container,
.intro-box{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,247,241,.95));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  margin: 18px 0 0;
}

/* ---------- 04. Header/navigation ---------- */
.site-header{
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--header-grad-start), var(--header-grad-mid), var(--header-grad-end));
  color: var(--header-title);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 32px rgba(42,30,23,.16);
}

.site-header::after{
  content:"";
  display:block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.35), transparent);
}

.site-header .container{
  padding-top: 28px;
  padding-bottom: 18px;
  text-align:center;
}

.site-title{
  margin:0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .98;
  letter-spacing: .02em;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.site-subtitle{
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--header-subtitle);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: .01em;
}

.site-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 18px 18px;
  background: var(--nav-bg);
  border-top: 1px solid var(--nav-border);
}

.site-nav a{
  color: var(--nav-link);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(3px);
}

.site-nav a:hover,
.site-nav a:focus{
  color: var(--nav-link-hover);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  text-decoration:none;
  transform: translateY(-1px);
}

.site-nav a.featured-nav-link{
  background: linear-gradient(180deg, #f7dfb7, #d1a55f);
  color: #2c211b;
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 8px 18px rgba(42,30,23,.16);
  font-weight: 800;
}

.site-nav a.featured-nav-link:hover,
.site-nav a.featured-nav-link:focus{
  background: linear-gradient(180deg, #ffe9bf, #c99545);
  color: #2c211b;
  border-color: rgba(255,255,255,.48);
}

/* ---------- 05. Filters and A-Z index ---------- */
.filter-bar{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,247,241,.95));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px 0 18px;
}

.filter-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.filter-bar label{
  display:block;
  font-size: .86rem;
  color: var(--site-muted);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.filter-bar select,
.filter-bar input{
  width:100%;
  border:1px solid rgba(123,103,88,.22);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #fffdfa;
  color: var(--page-text);
  outline:none;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.02);
}

.filter-bar select:focus,
.filter-bar input:focus{
  border-color: var(--site-accent);
  box-shadow: 0 0 0 4px rgba(185,150,97,.16);
}

.letters-index{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin: 6px 0 20px;
}

.letters-index a{
  background: rgba(235,225,212,.88);
  color: var(--chip-text);
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .82rem;
  border: 1px solid rgba(90,72,61,.08);
  box-shadow: 0 4px 10px rgba(67,53,45,.05);
}

.letters-index a:hover{
  background: var(--chip-bg-hover);
  text-decoration:none;
  transform: translateY(-1px);
}

.letter-section{
  margin: 20px 0 28px;
}

.letter-heading{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(246,241,234,.88));
  border: 1px solid rgba(90,72,61,.10);
  box-shadow: 0 8px 20px rgba(67,53,45,.06);
  position: relative;
}

.letter-heading::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:4px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--site-accent), #ccb189);
}

.letter-heading h2{
  margin:0 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ---------- 06. Listing cards, badges, and buttons ---------- */
.listing-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.listing-card{
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px;
  backdrop-filter: blur(3px);
  overflow:hidden;
}

.listing-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(185,150,97,.8), rgba(154,174,168,.75));
  opacity:.85;
}

.listing-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(67,53,45,.12);
}

.listing-title{
  margin:0;
  padding-left: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--card-title);
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 10px;
}

.listing-title a.name-link{
  color: var(--card-title);
  text-decoration:none;
}

.listing-title a.name-link:hover{
  color: var(--site-deep);
  text-decoration: underline;
}

.listing-meta{
  margin-top: 10px;
  padding-left: 8px;
  color: var(--site-muted);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
}

.listing-meta strong{
  color: var(--site-ink);
  font-weight: 600;
}

.listing-meta a{
  color: var(--site-deep);
  font-weight: 600;
}

.tags,
.featured-tags{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag,
.featured-tag{
  background: rgba(235,225,212,.72);
  border: 1px solid rgba(90,72,61,.08);
  color: var(--site-deep);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
}

.actions,
.featured-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
  align-items:center;
}

.action-btn,
.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 14px;
  background: linear-gradient(180deg, #705a4c, var(--btn-bg));
  color: var(--btn-text);
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid rgba(67,53,45,.10);
  box-shadow: 0 8px 16px rgba(67,53,45,.08);
  text-decoration:none;
}

.action-btn:visited,
.cta-button:visited{
  color: var(--btn-text);
}

.action-btn:hover,
.action-btn:focus,
.action-btn:active,
.cta-button:hover,
.cta-button:focus,
.cta-button:active{
  background: linear-gradient(180deg, #654f43, var(--btn-bg-hover));
  color: #ffffff;
  text-decoration:none;
  transform: translateY(-1px);
}

.featured-pill,
.tier-badge{
  display:inline-block;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #6d584b, var(--site-deeper));
  color: #f9f2e7;
  border: 1px solid rgba(185,150,97,.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.1;
  text-decoration:none;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  white-space: nowrap;
}

.featured-pill:hover{
  color: #ffffff;
  text-decoration:none;
}

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 20px rgba(42,30,23,.14);
}

.button:hover,
.button:focus{
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary{
  background: linear-gradient(180deg, #f7dfb7, #d1a55f);
  color: #2c211b;
  border-color: rgba(67,53,45,.22);
}

.button-primary:visited,
.button-primary:hover,
.button-primary:focus{
  color: #2c211b;
  background: linear-gradient(180deg, #ffe9bf, #c99545);
}

.button-secondary{
  background: #fffaf4;
  color: #43352d;
  border-color: rgba(67,53,45,.22);
}

.button-secondary:visited,
.button-secondary:hover,
.button-secondary:focus{
  color: #2c211b;
  background: #ffffff;
}

/* ---------- 07. Promo cards, loading, and banners ---------- */
/* Network promo cards shown after alphabetical sections */
.letter-promo-slot{
  width: 100%;
  max-width: 640px;
  margin: 14px auto 26px;
}

.promo-card,
.network-promo-card{
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(251,247,241,.96));
  border: 1px solid rgba(90,72,61,.14);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.promo-image-link{
  flex: 0 0 105px;
  width: 105px;
  height: 105px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(90,72,61,.14);
  background: #fffdfa;
  box-shadow: 0 7px 14px rgba(67,53,45,.08);
}

.promo-image,
.network-promo-image{
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  border-radius: 0;
}

.promo-content,
.network-promo-content{
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.promo-title,
.network-promo-title{
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 2.2vw, 1.52rem);
  line-height: 1.05;
  font-weight: 650;
  color: var(--site-deeper);
}

.promo-title a,
.network-promo-title a{
  color: var(--site-deeper);
  text-decoration: none;
}

.promo-title a:hover,
.network-promo-title a:hover{
  color: var(--site-deep);
  text-decoration: underline;
}

.promo-text,
.network-promo-tagline{
  color: var(--site-muted);
  margin: 0 0 7px;
  font-size: .92rem;
  line-height: 1.25;
}

.promo-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  background: linear-gradient(180deg, #c4a06c, var(--site-accent));
  color: #2c211b;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  border: 1px solid rgba(67,53,45,.10);
  box-shadow: 0 6px 12px rgba(67,53,45,.07);
}

.promo-button:visited{
  color: #2c211b;
}

.promo-button:hover,
.promo-button:focus{
  color: #2c211b;
  background: linear-gradient(180deg, #d0ad78, #b58d52);
  text-decoration: none;
  transform: translateY(-1px);
}

/* On very small phones, keep the card compact but allow stacking if needed */
@media (max-width: 430px){
  .letter-promo-slot{
    margin: 12px auto 22px;
  }

  .promo-card,
  .network-promo-card{
    gap: 9px;
    padding: 9px;
  }

  .promo-image-link{
    flex-basis: 88px;
    width: 88px;
    height: 88px;
  }

  .promo-title,
  .network-promo-title{
    font-size: 1.08rem;
  }

  .promo-text,
  .network-promo-tagline{
    font-size: .82rem;
    line-height: 1.22;
    margin-bottom: 6px;
  }

  .promo-button{
    min-height: 30px;
    padding: 5px 9px;
    font-size: .78rem;
  }
}

.tier-highlight{
  box-shadow: 0 0 0 4px rgba(185,150,97,.22), 0 20px 34px rgba(67,53,45,.14) !important;
  transition: box-shadow .25s ease;
}

.loader-dots{
  display: flex;
  justify-content: center;
  gap: 6px;
}

.loader-dots span{
  width: 8px;
  height: 8px;
  background: #7b6758;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.loader-dots span:nth-child(2){ animation-delay: 0.2s; }
.loader-dots span:nth-child(3){ animation-delay: 0.4s; }

@keyframes bounce{
  0%, 80%, 100%{ transform: scale(0); }
  40%{ transform: scale(1); }
}

.banner{
  width: 100%;
  overflow: visible;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(90,72,61,.10);
  box-shadow: 0 8px 22px rgba(67,53,45,.08);
}

.banner img{
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: none;
}

.banner:hover img{
  transform: none;
}

/* ---------- 08. Featured lodging page ---------- */
.featured-main{
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 18px 34px;
}

.featured-intro .cta-button{
  margin-top: 10px;
}

.featured-list{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.featured-card{
  overflow:hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(90,72,61,.10);
  box-shadow: var(--shadow-soft);
}

.featured-image{
  height: 180px;
  background-size: cover;
  background-position: center;
}

.featured-content{
  padding: 16px;
}

.featured-town{
  font-weight: 700;
  color: var(--site-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .86rem;
  margin-bottom: 8px;
}

.featured-name{
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--site-ink);
  font-weight: 600;
}

.featured-description{
  margin: 0 0 12px;
  color: var(--site-muted);
  line-height: 1.6;
}

.back-to-listings{
  margin: 20px 0 12px;
  font-weight: 600;
}

.back-to-listings a{
  color: var(--site-deep);
}

/* ---------- 09. Get Featured / upgrade page ---------- */
.featured-upgrade-page{
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 18px 38px;
}

.featured-upgrade-hero{
  margin: 18px 0;
  border-radius: var(--radius, 20px);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, var(--header-grad-start, #8d7968), var(--header-grad-mid, #735e51), var(--header-grad-end, #56443a));
  color: var(--header-title, #fffaf4);
  box-shadow: var(--shadow-card, 0 14px 30px rgba(67,53,45,.10));
  border: 1px solid rgba(255,255,255,.14);
}

.featured-upgrade-hero-inner{
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 54px);
  text-align: center;
}

.eyebrow{
  margin: 0 0 10px;
  color: var(--site-accent-soft, #d7c0a0);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-upgrade-hero h1{
  max-width: 820px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 6vw, 4.65rem);
  line-height: .96;
  font-weight: 650;
  letter-spacing: .01em;
}

.hero-intro{
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--header-subtitle, #f2e4d0);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions,
.final-actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.content-section{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,247,241,.96));
  border: 1px solid var(--card-border, rgba(90,72,61,.12));
  border-radius: var(--radius, 20px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(67,53,45,.08));
  padding: clamp(18px, 4vw, 30px);
  margin: 18px 0;
}

.content-section h2{
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper, #43352d);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  line-height: 1.02;
  font-weight: 650;
}

.content-section p{
  color: var(--site-muted, #6f6055);
  margin: 0 0 12px;
}

.featured-upgrade-intro{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.content-copy{ min-width: 0; }

.notice-box{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(235,225,212,.58);
  border: 1px solid rgba(90,72,61,.12);
}

.notice-box strong{
  display: block;
  color: var(--site-deeper, #43352d);
  margin-bottom: 5px;
}

.notice-box p{ margin: 0; }

.featured-price-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffaf4 0%, #f5eadb 100%);
  color: var(--site-deeper, #43352d);
  box-shadow: 0 18px 34px rgba(67,53,45,.16);
  border: 2px solid rgba(185,150,97,.75);
  text-align: center;
}

.price-card-label{
  margin: 0;
  color: #5a483d;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .84rem;
}

.price-card-price{
  margin: 2px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.35rem, 6vw, 4.8rem);
  line-height: .9;
  font-weight: 800;
  color: #2c211b;
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

.price-card-price span{
  display: block;
  margin-top: 12px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  color: #5a483d;
  font-weight: 800;
}

.featured-price-card p:not(.price-card-label):not(.price-card-price){
  margin: 0 0 8px;
  color: #4a3a31;
  line-height: 1.5;
  font-weight: 600;
}

.featured-price-card .button-primary{
  margin-top: 4px;
  color: #fffaf4;
  background: linear-gradient(180deg, #705a4c, #43352d);
  border-color: rgba(67,53,45,.28);
}

.featured-price-card .button-primary:visited,
.featured-price-card .button-primary:hover,
.featured-price-card .button-primary:focus{
  color: #ffffff;
  background: linear-gradient(180deg, #806756, #352b25);
}

.benefit-grid,
.steps-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.steps-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.benefit-card,
.step-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(90,72,61,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(67,53,45,.06);
}

.benefit-card h3,
.step-card h3{
  margin: 0 0 8px;
  color: var(--site-deeper, #43352d);
  font-size: 1.12rem;
  line-height: 1.15;
}

.benefit-card p,
.step-card p{
  margin: 0;
  font-size: .98rem;
}

.step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c4a06c, var(--site-accent, #b99661));
  color: #2c211b;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(67,53,45,.10);
}

.final-cta{ text-align: center; }

.final-cta p{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.small-note{
  margin-top: 14px !important;
  font-size: .94rem;
  color: var(--site-muted, #6f6055);
}

/* ---------- 10. Submit Featured Lodging page ---------- */
body[data-page="submit-featured-lodging"] .featured-submit-page{
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 18px 42px;
}

body[data-page="submit-featured-lodging"] .featured-submit-hero,
body[data-page="submit-featured-lodging"] .featured-submit-section,
body[data-page="submit-featured-lodging"] .form-section{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(251,247,241,.96));
  border: 1px solid rgba(90,72,61,.12);
  border-radius: var(--radius, 20px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(67,53,45,.08));
  padding: 22px;
  margin: 18px 0;
}

body[data-page="submit-featured-lodging"] .featured-submit-hero{
  text-align: center;
  padding: 30px 22px;
}

body[data-page="submit-featured-lodging"] .featured-submit-hero h1,
body[data-page="submit-featured-lodging"] .featured-submit-section h2,
body[data-page="submit-featured-lodging"] .form-section h2{
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper, #43352d);
  line-height: 1.05;
}

body[data-page="submit-featured-lodging"] .featured-submit-hero h1{
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 600;
}

body[data-page="submit-featured-lodging"] .featured-submit-hero p{
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--site-muted, #6f6055);
  font-size: 1.08rem;
}

body[data-page="submit-featured-lodging"] .price-reminder{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(185,150,97,.16);
  border: 1px solid rgba(185,150,97,.35);
  color: var(--site-deeper, #43352d);
  font-weight: 800;
}

body[data-page="submit-featured-lodging"] .form-note{
  border-left: 5px solid var(--site-accent, #b99661);
  padding: 12px 14px;
  background: rgba(235,225,212,.42);
  border-radius: 12px;
  margin: 16px 0;
  color: var(--site-muted, #6f6055);
}

body[data-page="submit-featured-lodging"] .field-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="submit-featured-lodging"] .field-full{ grid-column: 1 / -1; }

body[data-page="submit-featured-lodging"] label{
  display: block;
  margin: 0 0 6px;
  color: var(--site-ink, #352b25);
  font-weight: 700;
}

body[data-page="submit-featured-lodging"] .help-text{
  display: block;
  margin-top: 5px;
  color: var(--site-muted, #6f6055);
  font-size: .92rem;
  line-height: 1.35;
}

body[data-page="submit-featured-lodging"] input,
body[data-page="submit-featured-lodging"] select,
body[data-page="submit-featured-lodging"] textarea{
  width: 100%;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(123,103,88,.24);
  background: #fffdfa;
  color: var(--site-ink, #352b25);
  font: inherit;
  outline: none;
}

body[data-page="submit-featured-lodging"] textarea{
  min-height: 120px;
  resize: vertical;
}

body[data-page="submit-featured-lodging"] input:focus,
body[data-page="submit-featured-lodging"] select:focus,
body[data-page="submit-featured-lodging"] textarea:focus{
  border-color: var(--site-accent, #b99661);
  box-shadow: 0 0 0 4px rgba(185,150,97,.16);
}

body[data-page="submit-featured-lodging"] .checkbox-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 8px;
}

body[data-page="submit-featured-lodging"] .check-row{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(235,225,212,.42);
  border: 1px solid rgba(90,72,61,.08);
  border-radius: 12px;
  padding: 9px 10px;
}

body[data-page="submit-featured-lodging"] .check-row input{
  width: auto;
  margin-top: 4px;
  flex: 0 0 auto;
}

body[data-page="submit-featured-lodging"] .check-row label{
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

body[data-page="submit-featured-lodging"] .hp-field{
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body[data-page="submit-featured-lodging"] #form-message{
  display: none;
  margin: 1rem 0;
  padding: .95rem 1rem;
  border-radius: 12px;
  line-height: 1.45;
  font-weight: 600;
}

body[data-page="submit-featured-lodging"] .form-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

body[data-page="submit-featured-lodging"] button[type="submit"]{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(67,53,45,.10);
  cursor: pointer;
  background: linear-gradient(180deg, #705a4c, var(--btn-bg, #5a483d));
  color: var(--btn-text, #fffaf4);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(67,53,45,.08);
}

body[data-page="submit-featured-lodging"] button[type="submit"]:hover{
  background: linear-gradient(180deg, #654f43, var(--btn-bg-hover, #43352d));
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

body[data-page="submit-featured-lodging"] button[disabled]{
  opacity: .72;
  cursor: wait;
  transform: none;
}

body[data-page="submit-featured-lodging"] .secondary-link{
  font-weight: 700;
  color: var(--site-deep, #5a483d);
}

body[data-page="submit-featured-lodging"] .small-note{
  color: var(--site-muted, #6f6055);
  font-size: .94rem;
  margin-top: 10px;
}

/* ---------- 11. Footer and responsive refinements ---------- */
.site-footer{
  margin-top: 34px;
  background: linear-gradient(180deg, #4a3a31, var(--footer-bg));
  color: var(--footer-text);
  padding: 24px 0;
  box-shadow: 0 -12px 30px rgba(67,53,45,.08);
}

.footer-inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  text-align:center;
}

.site-footer p{ margin: 0 0 10px; }

.site-footer a{
  color: var(--footer-link);
  font-weight: 600;
}

.site-footer a:hover{
  color: var(--footer-link-hover);
  text-decoration: underline;
}

@media (min-width: 720px){
  .featured-card{
    display:grid;
    grid-template-columns: 290px 1fr;
  }

  .featured-image{
    height: 100%;
    min-height: 210px;
  }
}

@media (max-width: 860px){
  .featured-upgrade-intro,
  .benefit-grid,
  .steps-grid{
    grid-template-columns: 1fr;
  }

  .featured-price-card{ min-height: 260px; }
}

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

@media (max-width: 720px){
  body[data-page="submit-featured-lodging"] .field-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  body{ font-size: 16px; }

  .container,
  .featured-main,
  .footer-inner{
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-nav{
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-nav a{
    width: calc(50% - 4px);
    justify-content:center;
    text-align:center;
  }

  .listing-card{ padding: 16px; }

  .featured-upgrade-page{
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-actions .button,
  .final-actions .button{
    width: 100%;
  }

  body[data-page="submit-featured-lodging"] .checkbox-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .banner{ margin-bottom: 10px; }

  .banner img{
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}

/* =========================================================
   Shop page / product cards
   Used by: shop.html and products.js
   ========================================================= */

body[data-page="shop"] .shop-page {
  max-width: 980px;
}

.category-heading {
  margin: 0.75rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper, #43352d);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 650;
  text-align: center;
}

body[data-page="shop"] .shop-page > p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--site-muted, #6f6055);
  text-align: center;
}

.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 0.85rem;
  border-radius: var(--radius, 20px);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(251,247,241,.96));
  border: 1px solid var(--card-border, rgba(90,72,61,.12));
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(67,53,45,.08));
  text-align: center;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card, 0 14px 30px rgba(67,53,45,.10));
}

.product-card img {
  width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
  padding: 0.4rem;
  border-radius: var(--radius-sm, 14px);
  background: #fffdfa;
  border: 1px solid rgba(90,72,61,.10);
}

.product-card h3 {
  margin: 0.75rem 0 0.35rem;
  color: var(--site-deeper, #43352d);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.12;
  font-weight: 650;
}

.product-card .price {
  margin: 0.15rem 0 0.75rem;
  color: var(--site-muted, #6f6055);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-card .buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #705a4c, var(--btn-bg, #5a483d));
  color: var(--btn-text, #fffaf4);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(67,53,45,.10);
  box-shadow: 0 8px 16px rgba(67,53,45,.08);
}

.product-card .buy-button:visited {
  color: var(--btn-text, #fffaf4);
}

.product-card .buy-button:hover,
.product-card .buy-button:focus {
  background: linear-gradient(180deg, #654f43, var(--btn-bg-hover, #43352d));
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.shop-note {
  margin-top: 1.5rem;
  color: var(--site-muted, #6f6055);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 640px) {
  .shop-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .product-card {
    padding: 0.7rem;
    border-radius: 16px;
  }

  .product-card img {
    height: 145px;
    max-height: 145px;
  }

  .product-card h3 {
    font-size: 1.08rem;
  }
}

@media (max-width: 420px) {
  .shop-container {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 175px;
    max-height: 175px;
  }
}

/* =========================================================
   Submit / Update Lodging page
   Used by: submit.html
   ========================================================= */

body[data-page="submit"] .submit-page {
  max-width: 840px;
  padding-top: 24px;
  padding-bottom: 42px;
}

.content-card,
body[data-page="submit"] .site-form {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(251,247,241,.96));
  border: 1px solid var(--card-border, rgba(90,72,61,.12));
  border-radius: var(--radius, 20px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(67,53,45,.08));
  padding: clamp(18px, 4vw, 28px);
  margin: 18px 0;
}

body[data-page="submit"] .submit-intro {
  text-align: center;
}

body[data-page="submit"] .submit-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--site-muted, #6f6055);
  line-height: 1.65;
}

.site-form .form-row {
  margin-bottom: 14px;
}

.site-form label {
  display: block;
  margin: 0 0 6px;
  color: var(--site-ink, #352b25);
  font-weight: 800;
}

.optional-label {
  color: var(--site-muted, #6f6055);
  font-weight: 600;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(123,103,88,.24);
  background: #fffdfa;
  color: var(--site-ink, #352b25);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.02);
}

.site-form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: var(--site-accent, #b99661);
  box-shadow: 0 0 0 4px rgba(185,150,97,.16);
}

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.primary-submit-button,
.site-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(67,53,45,.10);
  cursor: pointer;
  background: linear-gradient(180deg, #705a4c, var(--btn-bg, #5a483d));
  color: var(--btn-text, #fffaf4);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(67,53,45,.08);
}

.primary-submit-button:hover,
.primary-submit-button:focus,
.site-form button[type="submit"]:hover,
.site-form button[type="submit"]:focus {
  background: linear-gradient(180deg, #654f43, var(--btn-bg-hover, #43352d));
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.primary-submit-button[disabled],
.site-form button[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.form-message {
  display: none;
  margin: 1rem 0;
  padding: .95rem 1rem;
  border-radius: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.form-message-success {
  display: block;
  background: #eef8ee;
  border: 1px solid #9bc79b;
  color: #234423;
}

.form-message-error {
  display: block;
  background: #fff1f1;
  border: 1px solid #d49a9a;
  color: #7a1f1f;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 640px) {
  body[data-page="submit"] .submit-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .form-submit-row,
  .primary-submit-button,
  .site-form button[type="submit"] {
    width: 100%;
  }
}


/* =========================================================
   Site-wide standardization helpers
   Added to keep top pages, fonts, buttons, navs, and forms consistent
   ========================================================= */

.site-nav a[aria-current="page"] {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(42,30,23,.10);
}

.site-nav a.featured-nav-link[aria-current="page"] {
  background: linear-gradient(180deg, #ffe9bf, #c99545);
  color: #2c211b;
}

.content-page,
.thankyou-page {
  max-width: 840px;
  padding-top: 24px;
  padding-bottom: 42px;
}

.content-page > p,
.thankyou-page > p,
.content-card p,
.intro-box p {
  color: var(--site-muted, #6f6055);
  line-height: 1.65;
}

.btn-ghost,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 14px;
  background: #fffaf4;
  color: var(--site-deeper, #43352d);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(67,53,45,.18);
  box-shadow: 0 8px 16px rgba(67,53,45,.06);
}

.btn-ghost:hover,
.btn-ghost:focus,
.secondary-link:hover,
.secondary-link:focus {
  color: #2c211b;
  background: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.button-row.center-buttons,
.center-buttons {
  justify-content: center;
}

.loading-message,
.form-note,
.form-help,
.muted-text {
  color: var(--site-muted, #6f6055);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--site-accent-soft, #d7c0a0);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.comments-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.comment-card,
.story-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(90,72,61,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(67,53,45,.06);
}

.comment-card h3,
.story-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper, #43352d);
  font-size: 1.5rem;
  line-height: 1.1;
}

.story-guidelines-box {
  margin: 16px 0;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(185,150,97,.14);
  border: 1px solid rgba(185,150,97,.30);
  color: var(--site-deeper, #43352d);
}

.story-guidelines-box h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper, #43352d);
  font-size: 1.45rem;
}

.story-guidelines-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.field-gap-top { margin-top: 16px !important; }
.check-row-spaced { margin-top: 10px !important; }

/* =========================================================
   Complete Featured Payment page
   Used by: complete-featured-payment.html
   ========================================================= */

body[data-page="complete-featured-payment"] .payment-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 18px 44px;
}

.payment-hero,
.payment-section,
.payment-card {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(251,247,241,.96));
  border: 1px solid rgba(90,72,61,.12);
  border-radius: var(--radius, 20px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(67,53,45,.08));
}

.payment-hero {
  text-align: center;
  padding: clamp(26px, 5vw, 48px) clamp(18px, 5vw, 44px);
  margin: 18px 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.28), transparent 36%),
    linear-gradient(135deg, var(--header-grad-start, #8d7968), var(--header-grad-mid, #735e51), var(--header-grad-end, #56443a));
  color: var(--header-title, #fffaf4);
  border-color: rgba(255,255,255,.14);
}

.payment-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: .98;
  font-weight: 650;
  letter-spacing: .01em;
}

.payment-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--header-subtitle, #f2e4d0);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.55;
  font-weight: 500;
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
  margin: 18px 0;
}

.payment-section,
.payment-card {
  padding: clamp(18px, 4vw, 28px);
}

.payment-section h2,
.payment-card h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--site-deeper, #43352d);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.05;
  font-weight: 650;
}

.payment-section p,
.payment-section li,
.payment-card p {
  color: var(--site-muted, #6f6055);
  line-height: 1.65;
}

.payment-section ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.payment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(67,53,45,.10);
  box-shadow: 0 10px 20px rgba(42,30,23,.12);
}

.payment-button:hover,
.payment-button:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.payment-button-primary {
  background: linear-gradient(180deg, #c4a06c, var(--site-accent, #b99661));
  color: #2c211b;
}

.payment-button-primary:visited,
.payment-button-primary:hover,
.payment-button-primary:focus {
  color: #2c211b;
}

.payment-button-secondary {
  background: linear-gradient(180deg, #705a4c, var(--btn-bg, #5a483d));
  color: var(--btn-text, #fffaf4);
}

.payment-button-secondary:visited,
.payment-button-secondary:hover,
.payment-button-secondary:focus {
  color: #ffffff;
}

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

@media (max-width: 640px) {
  .content-page,
  .thankyou-page,
  body[data-page="complete-featured-payment"] .payment-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .payment-button,
  .btn-ghost {
    width: 100%;
  }
}


/* ---- Network promo compact override
   Keeps rotating promos small, readable, and side-by-side.
   ========================================================= */
.letter-promo-slot {
  width: 100%;
  max-width: 560px;
  margin: 14px auto 26px;
}

.promo-card.network-promo-card,
.network-promo-card,
.promo-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.promo-image-link {
  flex: 0 0 105px;
  width: 105px;
  height: 105px;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.promo-image,
.network-promo-image {
  width: 105px;
  height: 105px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.promo-content,
.network-promo-content {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.promo-title,
.network-promo-title {
  margin: 0 0 3px;
  line-height: 1.08;
}

.promo-text,
.network-promo-tagline {
  margin: 0 0 7px;
  line-height: 1.28;
}

.promo-button {
  padding: 7px 11px;
  font-size: .9rem;
}

@media (max-width: 520px) {
  .promo-image-link {
    flex-basis: 88px;
    width: 88px;
    height: 88px;
  }

  .promo-image,
  .network-promo-image {
    width: 88px;
    height: 88px;
  }

  .promo-title,
  .network-promo-title {
    font-size: 1.08rem;
  }

  .promo-text,
  .network-promo-tagline {
    font-size: .86rem;
  }
}

/* =========================================================
   Refined Lodging Submission Forms — 2026 standard
   Used by: submit.html and submit-featured-lodging.html
   ========================================================= */

.lodging-form-banner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  background: #e9dfd3;
  border-bottom: 1px solid rgba(67, 53, 45, .14);
  box-shadow: 0 10px 28px rgba(67, 53, 45, .10);
}

.lodging-form-banner img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.lodging-submit-page {
  max-width: 1120px;
  padding-top: .8rem;
  padding-bottom: 2.5rem;
}

.lodging-submit-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  margin: 0 0 1.25rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(123, 103, 88, .20);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 14%, rgba(215, 192, 160, .48), transparent 30%),
    linear-gradient(135deg, #fffdfa 0%, #f8f1e8 65%, #eee1d2 100%);
  box-shadow: 0 12px 34px rgba(67, 53, 45, .13);
}

.lodging-submit-intro::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -98px;
  width: 224px;
  height: 224px;
  border: 34px solid rgba(123, 103, 88, .055);
  border-radius: 50%;
  pointer-events: none;
}

.lodging-submit-intro-copy {
  position: relative;
  z-index: 1;
}

.lodging-submit-intro .eyebrow {
  margin: 0 0 .4rem;
  color: #806746;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lodging-submit-intro h2 {
  margin: 0 0 .55rem;
  color: var(--site-deeper, #43352d);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
  font-weight: 700;
}

.lodging-submit-lead {
  max-width: 780px;
  margin: 0;
  color: #584a41;
  font-size: 1.03rem;
}

.lodging-free-seal,
.lodging-featured-price-seal {
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(90, 72, 61, .18);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 11px 26px rgba(67, 53, 45, .18), inset 0 0 0 8px rgba(255, 255, 255, .42);
  transform: rotate(2deg);
}

.lodging-free-seal {
  background: linear-gradient(145deg, #f7e7be, #c8a464);
  color: #3e3028;
}

.lodging-free-seal span,
.lodging-featured-price-seal > span {
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lodging-free-seal strong {
  display: block;
  margin: .1rem 0;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: .04em;
}

.lodging-submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 1.25rem;
}

.lodging-submit-form-card,
.lodging-sidebar-card {
  border: 1px solid rgba(90, 72, 61, .14);
  background: #fffdfa;
  box-shadow: 0 10px 28px rgba(67, 53, 45, .11);
}

.lodging-submit-form-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
}

.lodging-refined-form {
  margin: 0;
  padding: 0;
  background: transparent;
}

.lodging-form-section {
  min-width: 0;
  margin: 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 0;
  border-bottom: 1px solid #e7ddd1;
}

.lodging-form-section:last-of-type {
  border-bottom: 0;
}

.lodging-form-section legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .72rem;
  padding: 0;
  color: var(--site-deeper, #43352d);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 700;
}

.lodging-step-number {
  width: 36px;
  height: 36px;
  display: inline-grid;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #8c7563, #4c3c32);
  color: #fffaf4;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: .94rem;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(67, 53, 45, .22);
}

.lodging-section-intro {
  margin: .45rem 0 1rem 2.9rem;
  color: var(--site-muted, #6f6055);
  font-size: .92rem;
}

.lodging-form-grid {
  display: grid;
  gap: 1rem;
}

.lodging-two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lodging-form-row-wide {
  grid-column: 1 / -1;
}

.lodging-form-row {
  min-width: 0;
}

.lodging-refined-form label,
.lodging-field-label {
  display: block;
  margin-bottom: .4rem;
  color: #49392f;
  font-size: .94rem;
  font-weight: 900;
}

.required-mark {
  color: #a83333;
}

.optional-label {
  margin-left: .35rem;
  color: var(--site-muted, #6f6055);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lodging-refined-form input[type="text"],
.lodging-refined-form input[type="tel"],
.lodging-refined-form input[type="email"],
.lodging-refined-form input[type="url"],
.lodging-refined-form select,
.lodging-refined-form textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  border: 1px solid #cdbdac;
  border-radius: 12px;
  outline: none;
  background: #fffefc;
  color: #352b25;
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(67, 53, 45, .035);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lodging-refined-form textarea {
  min-height: 138px;
  resize: vertical;
  line-height: 1.5;
}

.lodging-refined-form input::placeholder,
.lodging-refined-form textarea::placeholder {
  color: #918379;
}

.lodging-refined-form input:focus,
.lodging-refined-form select:focus,
.lodging-refined-form textarea:focus {
  border-color: var(--site-accent, #b99661);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(185, 150, 97, .17);
}

.lodging-refined-form.was-validated input:invalid,
.lodging-refined-form.was-validated select:invalid,
.lodging-refined-form.was-validated textarea:invalid {
  border-color: #b53a3a;
  box-shadow: 0 0 0 3px rgba(181, 58, 58, .10);
}

.lodging-form-help {
  margin: .38rem 0 0;
  color: #72645a;
  font-size: .82rem;
  line-height: 1.42;
}

.lodging-choice-fieldset {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid #dfd2c4;
  border-radius: 17px;
  background: linear-gradient(180deg, #fffefc, #faf5ef);
}

.lodging-choice-fieldset.has-error {
  border-color: #b53a3a;
  box-shadow: 0 0 0 3px rgba(181, 58, 58, .10);
}

.lodging-amenities-fieldset {
  background: linear-gradient(180deg, #fcfaf7, #f4ede5);
}

.lodging-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .58rem;
  margin-top: .85rem;
}

.lodging-refined-form label.lodging-choice {
  display: block;
  margin: 0;
  cursor: pointer;
}

.lodging-choice input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lodging-choice span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .58rem .62rem;
  border: 1px solid #d4c5b5;
  border-radius: 11px;
  background: #ffffff;
  color: #514239;
  text-align: center;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.lodging-choice span:hover {
  border-color: var(--site-accent, #b99661);
  transform: translateY(-1px);
}

.lodging-choice input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(185, 150, 97, .18);
}

.lodging-choice input:checked + span {
  border-color: #58453a;
  background: linear-gradient(145deg, #8b7462, #4b3b31);
  color: #ffffff;
  box-shadow: 0 5px 11px rgba(67, 53, 45, .20);
}

.lodging-other-label {
  margin-top: 1rem !important;
}

.lodging-field-error {
  margin: .6rem 0 0;
  color: #a02626;
  font-size: .86rem;
  font-weight: 800;
}

.lodging-field-help-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.lodging-character-count {
  flex: 0 0 auto;
  margin: .38rem 0 0;
  color: #75675d;
  font-size: .78rem;
  font-weight: 800;
}

.lodging-confirmation-list {
  display: grid;
  gap: .8rem;
  margin-top: 1.15rem;
}

.lodging-refined-form label.lodging-confirmation-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: .72rem;
  margin: 0;
  padding: .85rem .9rem;
  border: 1px solid #e0d4c8;
  border-radius: 13px;
  background: #fcf8f3;
  color: #514239;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.42;
}

.lodging-confirmation-row input {
  width: 18px;
  height: 18px;
  margin: .08rem 0 0;
  accent-color: #6e594b;
}

.lodging-submit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.28rem clamp(1.2rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, #f5eee6, #fbf8f3);
  border-top: 1px solid #e6dbcf;
}

.lodging-submission-assurance {
  display: grid;
  gap: .2rem;
  color: #49392f;
  font-size: .91rem;
}

.lodging-submission-assurance span {
  color: var(--site-muted, #6f6055);
  font-size: .79rem;
}

.lodging-primary-submit-button {
  min-width: 220px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .78rem 1.25rem;
  border: 1px solid rgba(67, 53, 45, .14);
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(145deg, #806857, #49392f);
  color: #ffffff !important;
  font: inherit;
  font-size: .96rem;
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .20);
  box-shadow: 0 8px 18px rgba(67, 53, 45, .24);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.lodging-primary-submit-button .button-label,
.lodging-primary-submit-button .button-arrow {
  color: #ffffff !important;
}

.lodging-primary-submit-button:hover,
.lodging-primary-submit-button:focus {
  background: linear-gradient(145deg, #6d5749, #382c25);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(67, 53, 45, .28);
}

.lodging-primary-submit-button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.button-arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.lodging-form-message {
  display: none;
  margin: 1rem clamp(1.2rem, 3vw, 1.8rem) 1.4rem;
  padding: .98rem 1.05rem;
  border-radius: 13px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.45;
}

.lodging-form-message:not(:empty) {
  display: block;
}

.lodging-form-message.success {
  border: 1px solid #a6d5bd;
  background: #edf9f2;
  color: #17613c;
}

.lodging-form-message.error {
  border: 1px solid #e0b4b4;
  background: #fff2f2;
  color: #8f2525;
}

.lodging-form-message.sending {
  border: 1px solid #d6c2a7;
  background: #fbf5eb;
  color: #5a483d;
}

/* The anti-spam fields must never be visible to a human visitor. */
.lodging-refined-form .hp-field {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lodging-submit-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.lodging-sidebar-card {
  overflow: hidden;
  padding: 1.18rem;
  border-radius: 20px;
}

.lodging-sidebar-card .eyebrow {
  margin: 0 0 .35rem;
  color: #846a47;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.lodging-sidebar-card h3 {
  margin: 0 0 .48rem;
  color: var(--site-deeper, #43352d);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.lodging-sidebar-card p {
  margin: 0;
  color: #66584e;
  font-size: .9rem;
}

.lodging-review-steps {
  display: grid;
  gap: 1rem;
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
}

.lodging-review-steps li {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr);
  gap: .72rem;
  align-items: start;
}

.lodging-review-steps li > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eee4d8;
  color: #49392f;
  font-weight: 900;
}

.lodging-review-steps strong {
  display: block;
  color: #49392f;
  font-size: .9rem;
}

.lodging-review-steps p {
  margin-top: .18rem;
  font-size: .79rem;
  line-height: 1.45;
}

.lodging-featured-sidebar-card,
.lodging-featured-benefits-card {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(232, 201, 126, .50), transparent 42%),
    linear-gradient(145deg, #fffdf7, #f8edcf);
  border-color: #ddc27b;
}

.lodging-sidebar-star {
  display: block;
  margin-bottom: .45rem;
  color: #b98524;
  font-size: 1.65rem;
}

.lodging-sidebar-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .95rem;
  padding: .68rem .85rem;
  border: 1px solid #c8aa62;
  border-radius: 999px;
  background: #ffffff;
  color: #4b3b31;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.lodging-sidebar-button:hover,
.lodging-sidebar-button:focus {
  background: #fff9ec;
  color: #382c25;
  text-decoration: none;
  transform: translateY(-1px);
}

.lodging-help-email {
  display: inline-block;
  margin-top: .55rem;
  overflow-wrap: anywhere;
  font-size: .86rem;
  font-weight: 800;
}

/* Featured variation */
.lodging-featured-submit-page {
  max-width: 1180px;
}

.lodging-featured-submit-intro {
  border-color: rgba(177, 126, 32, .34);
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 216, 148, .60), transparent 31%),
    linear-gradient(135deg, #fffefa 0%, #fff8e8 64%, #f3e3b8 100%);
}

.lodging-featured-submit-intro::after {
  border-color: rgba(177, 126, 32, .07);
}

.lodging-featured-price-seal {
  width: 148px;
  height: 148px;
  border-color: rgba(113, 76, 11, .20);
  background: linear-gradient(145deg, #fff0ad, #d8ad45 72%, #b87e16);
  color: #493515;
}

.lodging-featured-price-seal strong {
  display: block;
  margin: .08rem 0;
  font-size: 2.08rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.lodging-featured-price-seal .price-dollar {
  margin-right: .04em;
  font-size: 1.2rem;
  vertical-align: .35em;
}

.lodging-featured-form-card {
  border-color: #dfc987;
}

.lodging-featured-refined-form .lodging-step-number {
  background: linear-gradient(145deg, #e2bd58, #9b650d);
  color: #3c2a10;
}

.lodging-featured-refined-form .lodging-form-section legend {
  color: #634914;
}

.lodging-featured-refined-form .lodging-choice input:checked + span {
  border-color: #98670e;
  background: linear-gradient(145deg, #f1d373, #bf8b23);
  color: #3c2c13;
  box-shadow: 0 5px 11px rgba(91, 57, 2, .20);
}

.lodging-featured-amenities-fieldset {
  border-color: #e3d19a;
  background: linear-gradient(180deg, #fffefa, #fff8e8);
}

.lodging-featured-submit-panel {
  background: linear-gradient(135deg, #fff9e8, #f3e5b9);
  border-top-color: #e2cf91;
}

.lodging-featured-primary-button {
  background: linear-gradient(145deg, #c99a30, #8e5b0b);
}

.lodging-featured-primary-button:hover,
.lodging-featured-primary-button:focus {
  background: linear-gradient(145deg, #b58724, #704606);
}

.lodging-featured-benefit-list {
  display: grid;
  gap: .75rem;
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
}

.lodging-featured-benefit-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: .55rem;
  color: #584a3e;
  font-size: .88rem;
  line-height: 1.4;
}

.lodging-featured-benefit-list span {
  color: #ae7813;
  font-size: 1rem;
}

.lodging-photo-sidebar-card {
  background: linear-gradient(145deg, #fbf8f3, #eee5da);
}

@media (max-width: 940px) {
  .lodging-submit-layout {
    grid-template-columns: 1fr;
  }

  .lodging-submit-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: static;
  }
}

@media (max-width: 720px) {
  .lodging-form-banner img {
    min-height: 220px;
    object-fit: cover;
  }

  .lodging-submit-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lodging-submit-intro .eyebrow {
    text-align: center;
  }

  .lodging-free-seal,
  .lodging-featured-price-seal {
    width: 116px;
    height: 116px;
    margin: 0 auto;
  }

  .lodging-free-seal strong {
    font-size: 1.45rem;
  }

  .lodging-featured-price-seal strong {
    font-size: 1.72rem;
  }

  .lodging-two-column-grid {
    grid-template-columns: 1fr;
  }

  .lodging-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lodging-submit-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .lodging-submission-assurance {
    text-align: center;
  }

  .lodging-primary-submit-button {
    width: 100%;
  }

  .lodging-submit-sidebar {
    grid-template-columns: 1fr;
  }

  .lodging-field-help-line {
    display: block;
  }

  .lodging-character-count {
    text-align: right;
  }
}

@media (max-width: 460px) {
  .lodging-submit-page {
    padding-left: .7rem;
    padding-right: .7rem;
  }

  .lodging-submit-intro,
  .lodging-submit-form-card,
  .lodging-sidebar-card {
    border-radius: 16px;
  }

  .lodging-choice-grid {
    grid-template-columns: 1fr;
  }

  .lodging-choice span {
    min-height: 42px;
  }

  .lodging-form-section legend {
    font-size: 1.18rem;
  }

  .lodging-section-intro {
    margin-left: 0;
  }
}


/* ===== Jerry Schmeer / Cape Cod Arts Network site signature ===== */
.js-network-signature {
  margin: 0 auto 18px;
  padding: 16px 14px 17px;
  text-align: center;
  border-top: 1px solid rgba(215, 192, 160, .78);
  border-bottom: 1px solid rgba(215, 192, 160, .24);
  background: linear-gradient(180deg, rgba(185,150,97,.10), rgba(255,255,255,.015));
}

.js-network-signature-title {
  margin: 0 !important;
  color: var(--site-accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.js-network-signature-title a,
.js-network-signature-founder a {
  color: var(--footer-link);
  text-decoration: none;
}

.js-network-signature-title a:hover,
.js-network-signature-founder a:hover {
  color: #fff4df;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.js-network-signature-founder {
  margin: 5px 0 0 !important;
  color: #eadfce;
  font-size: .84rem;
  letter-spacing: .035em;
}

.js-network-signature-dot {
  color: var(--site-accent-soft);
  padding: 0 .42em;
}

/* ===== CCLodging.com Shop featured bookstore ===== */
.shop-feature-card {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  max-width: 930px;
  margin: 1.35rem auto 2rem;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(248,239,226,.96));
  border: 1px solid rgba(185,150,97,.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.shop-feature-image-link {
  flex: 0 0 42%;
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius) - 7px);
  background: #efe5d5;
}

.shop-feature-image {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}

.shop-feature-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: .35rem .35rem .35rem 0;
}

.shop-feature-copy h2 {
  margin: .18rem 0 .55rem;
  color: var(--site-deeper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
}

.shop-feature-copy p {
  color: var(--site-muted);
  margin: 0 0 .9rem;
  text-align: left;
}

.shop-feature-eyebrow {
  color: var(--site-accent) !important;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.shop-feature-button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #c4a06c, var(--site-accent));
  border: 1px solid rgba(67,53,45,.12);
  color: #2c211b;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(67,53,45,.09);
}

.shop-feature-button:visited { color: #2c211b; }
.shop-feature-button:hover,
.shop-feature-button:focus {
  color: #2c211b;
  background: linear-gradient(180deg, #d0ad78, #b58d52);
  text-decoration: none;
  transform: translateY(-1px);
}

.shop-coloring-section {
  margin-top: 1.2rem;
}

.shop-section-heading {
  margin: 0 0 .35rem;
  color: var(--site-deeper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  text-align: center;
}

.shop-section-intro {
  max-width: 760px;
  margin: 0 auto 1.1rem;
  color: var(--site-muted);
  text-align: center;
}

@media (max-width: 760px) {
  .shop-feature-card { flex-direction: column; }
  .shop-feature-image-link { flex-basis: auto; width: 100%; }
  .shop-feature-image { min-height: 0; aspect-ratio: 16 / 9; }
  .shop-feature-copy { padding: .25rem; align-items: center; text-align: center; }
  .shop-feature-copy p { text-align: center; }
  .shop-feature-button { align-self: center; }
}
