@font-face{
  font-family: "Edwardian Script ITC";
  src: url("assets/fonts/edwardianscriptitc.ttf") format("truetype");
  font-display: swap;
}

:root{
  --bg: #071325;
  --bg2: #081a33;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);

  --text: #f7f1d9;
  --muted: rgba(247,241,217,.74);
  --line: rgba(208,173,92,.22);

  --shadow: 0 16px 34px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;

  --gold: #d0ad5c;
  --gold2: #b89444;
  --gold-soft: rgba(208,173,92,.14);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1100px 720px at 18% 0%, rgba(208,173,92,.10), transparent 55%),
    radial-gradient(900px 650px at 85% 10%, rgba(208,173,92,.06), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-underline-offset: 3px; }
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top:0;
  z-index: 20;
  background: rgba(7,19,37,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(208,173,92,.22);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
}
.brand-mark{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(208,173,92,.08);
  border: 1px solid rgba(208,173,92,.32);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 0 0 1px rgba(208,173,92,.20), 0 10px 22px rgba(0,0,0,.30), 0 0 26px rgba(208,173,92,.18);
}
.brand-name{ font-family: 'Edwardian Script ITC', 'Snell Roundhand', 'Apple Chancery', 'Zapfino', cursive; font-weight: 400; letter-spacing: .2px; font-size: 42px; line-height: 1.0; color: #f2d98c; text-shadow: 0 2px 18px rgba(208,173,92,.22); }
.brand-tag{ color: rgba(247,241,217,.72); font-size: 12px; margin-top: 2px; letter-spacing: .2px; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover{ color: var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ddb86a, var(--gold));
  color: #071325;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-small{ padding: 9px 12px; font-size: 13px; }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(208,173,92,.35);
  box-shadow: none;
}
.btn-ghost:hover{
  background: rgba(208,173,92,.08);
  border-color: rgba(208,173,92,.55);
}

.hero{
  padding: 48px 0 34px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start;
}
.pill{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(208,173,92,.10);
  border: 1px solid rgba(208,173,92,.28);
  color: rgba(247,241,217,.90);
  font-size: 13px;
  margin: 0 0 14px 0;
  font-weight: 700;
}
h1{
  margin: 0 0 10px 0;
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: .2px;
}
.lead{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}
.hero-cta{ display:flex; gap: 14px; flex-wrap: wrap; }

.trust{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust-item{
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(208,173,92,.22);
  background: rgba(255,255,255,.04);
}
.trust-title{ font-weight: 800; font-size: 13px; color: var(--text); }
.trust-text{ margin-top: 6px; color: var(--muted); font-size: 13px; }
.trust-text a{ color: #f2d98c; }

.hero-media{
  position: relative;
}
.hero-image{
  width: 100%;
  height: 380px;
  border-radius: var(--radius2);
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(208,173,92,.22);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.25);
}
.hero-card{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 14px 12px 14px;
  border-radius: 18px;
  background: rgba(7,19,37,.72);
  border: 1px solid rgba(208,173,92,.22);
  backdrop-filter: blur(10px);
}
.hero-card-title{
  font-weight: 900;
  margin-bottom: 8px;
}
.hours{
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.hours li{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}
.hours li span:first-child{ color: rgba(247,241,217,.92); font-weight: 650; }
.hours li.muted span{ color: rgba(247,241,217,.68); }
.hours.compact{ gap: 7px; }

.section{
  padding: 42px 0;
}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(208,173,92,.14);
  border-bottom: 1px solid rgba(208,173,92,.14);
}
.section-head{
  margin-bottom: 18px;
}
h2{
  margin: 0;
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .2px;
}
.muted{ color: var(--muted); }
.link{ color: #f2d98c; text-decoration: none; font-weight: 650; }
.link:hover{ text-decoration: underline; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid rgba(208,173,92,.18);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
.card h3{ margin: 0 0 10px 0; font-size: 16px; }

.card-title{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(247,241,217,.95);
  font-weight: 900;
}

.title-icon{
  width: 18px;
  height: 18px;
  color: #f2d98c;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));

  fill: currentColor;}

.card-title span{
  display:inline-block;
}

.card p{ margin: 0 0 10px 0; color: var(--muted); }
.mini-cta{ display:flex; gap: 10px; flex-wrap: wrap; }

.note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(208,173,92,.42);
  background: rgba(208,173,92,.06);
  color: rgba(247,241,217,.90);
}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.bullets{
  display:grid;
  gap: 14px;
}
.bullet{
  border: 1px solid rgba(208,173,92,.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.03);
}
.bullet-title{ font-weight: 900; margin-bottom: 6px; }
.bullet-text{ color: var(--muted); font-size: 14px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery figure{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(208,173,92,.18);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.gallery img{
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  display:block;
}

.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.site-footer{
  padding: 22px 0;
  border-top: 1px solid rgba(208,173,92,.14);
  background: rgba(255,255,255,.02);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 18px;
  padding-bottom: 10px;
}
.footer-title{ font-weight: 900; }
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover{ color: var(--text); }
.footer-bottom{ padding-top: 10px; border-top: 1px solid rgba(208,173,92,.14); }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-image{ height: 320px; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .trust{ grid-template-columns: 1fr; }
}


/* Contact section: make key links gold like "Facebook page →" */
.contact-grid .card a{
  color: #f2d98c;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(242,217,140,.35);
}
.contact-grid .card a:hover{
  text-decoration-color: rgba(242,217,140,.75);
}

/* Title icons: force gold fill */
.title-icon{
  width: 18px;
  height: 18px;
  color: #f2d98c;
  fill: currentColor;
}

/* What you will see: extra content */
.mini-list{
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(208,173,92,.18);
  background: rgba(255,255,255,.03);
}

.mini-item{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: rgba(247,241,217,.86);
  font-size: 14px;
}

.mini-item .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 6px;
  background: #f2d98c;
  box-shadow: 0 0 0 2px rgba(242,217,140,.12);
  flex: 0 0 auto;
}

/* Right column call-to-action card */
.bullet-cta{
  padding: 16px;
  background: rgba(208,173,92,.06);
  border: 1px solid rgba(208,173,92,.24);
}

.bullet-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Inline icons for contact links */
.sep{
  color: rgba(247,241,217,.45);
  margin: 0 8px;
}

/* Small link inside hero trust cards */
.mini-link{
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  color: #f2d98c;
  text-decoration: underline;
  text-decoration-color: rgba(242,217,140,.35);
  font-weight: 650;
}
.mini-link:hover{
  text-decoration-color: rgba(242,217,140,.75);
}


/* WhatsApp icon: stroke-based for recognisability */
.icon-wa{ fill: none !important; }
.icon-wa path{ fill: none !important; stroke: currentColor; }


/* Icon sizing (global) */
.inline-icon{
  width: 22px !important;
  height: 22px !important;
  margin-right: 10px !important;
  vertical-align: -4px !important;
}

/* Slightly larger in key link rows */
.trust-text .inline-icon,
.contact-row .inline-icon,
.mini-link .inline-icon{
  width: 24px !important;
  height: 24px !important;
  vertical-align: -5px !important;
}

svg.inline-icon{ fill: currentColor; }


/* Ensure icons remain gold (inherit from link color) */
a .inline-icon,
.mini-link .inline-icon,
.contact-row .inline-icon,
.trust-text .inline-icon{
  color: #d4b15a !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Contact section: primary lines */
.contact-primary{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.25rem 0;
}


/* Force gold for icons in Contact section */
.contact-primary .inline-icon{
  color: #d4b15a !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}


/* Title icons in contact cards: keep gold */
.title-icon{
  width: 22px;
  height: 22px;
  margin-right: 10px;
  color: #d4b15a !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}
.title-icon path{
  fill: currentColor !important;
  stroke: currentColor !important;
}




/* ===== About: Curator ===== */
.about-curator{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(208,173,92,.18);
}
.about-curator h3{
  margin: 0 0 10px 0;
  font-size: 1.05rem;
}
.about-curator p{
  margin: 0 0 10px 0;
}


/* ===== About: Right column stack + portrait placeholder ===== */
.about-side{
  display: flex;
  flex-direction: column;
  gap: 16px;
}



/* ===== About: Curator portrait photo ===== */
.portrait-photo{
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 3 / 2;
  max-height: 280px;
  border-radius: var(--radius2);
  border: 1px solid rgba(208,173,92,.22);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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