:root {
  --navy: #12233f;
  --navy-deep: #0a1628;
  --gold: #c9a24b;
  --cream: #faf6ee;
  --ink: #1d2530;
  --muted: #5c6472;
  --line: #e4ddc9;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.clearfix {
	
	clear: both;
	content: "";
	display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
}

.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
}

.button {
	padding: 10px 20px;
	border-radius: 50px;
	background-color: var(--gold);
	color: white;
}

/* NAVBAR */
.navbar {
	background-color: var(--navy-deep);
	padding: 20px 40px;
	
}

.box-navbar-logo img {
	
	width: 10%;
	height: auto;
}

.box-navbar-logo, .box-navbar-links {
	
	width: 50%;
} 

.box-navbar-logo, .box-navbar-links {
	
	float: left;
}

.box-navbar-links {
	margin-top: 20px;
	padding-left: 300px;
}

.box-navbar-links li {
	
	display: inline-block;
	float: left;
	margin-right: 20px;
}

.box-navbar-links li a {
	
	color: white;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,75,0.18), transparent 60%);
}

.eyebrow {
  position: relative;
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.hero p {
  position: relative;
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

.hero-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.35); color: #fff; }

/* Section shell */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .eyebrow { color: #a3833c; }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  font-weight: 600;
}

.section-head p { color: var(--muted); margin-top: 12px; }

/* Pillars / About */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.pillar .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pillar h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}

.pillar p { color: var(--muted); font-size: 0.95rem; }

/* Locations */
.locations-section { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
}

.location-card .map {
  height: 190px;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.location-card .body { padding: 24px; }

.location-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.location-card address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.location-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a3833c;
  background: rgba(201,162,75,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}

.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* Footer */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 760px) {
  .main-nav { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   SUBPAGE HERO (about / gallery / announcements / contact)
   Solid theme-color band used in place of a photo/background image
============================================================= */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

.main-nav a.active { color: var(--gold); }

/* ============================================================
   ABOUT PAGE — story block (color panel instead of a photo)
============================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story .panel {
  height: 260px;
  border-radius: 16px;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.story h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.story p { color: var(--muted); margin-bottom: 12px; }

/* ============================================================
   GALLERY
============================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: #fff;
  background: var(--navy);
}

.gallery-item:nth-child(3n+2) { background: var(--navy-deep); }
.gallery-item:nth-child(3n+3) { background: var(--gold); color: var(--navy-deep); }

/* ============================================================
   ANNOUNCEMENTS
============================================================= */
.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.announcement-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 30px;
}

.announcement-card .date {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a3833c;
  background: rgba(201,162,75,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.announcement-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.announcement-card p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   CONTACT
============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact-info .info-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info .info-item:first-child { padding-top: 0; }

.contact-info .info-item h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: 0.95rem; }

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form .field { margin-bottom: 18px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Responsive additions for subpages */
@media (max-width: 760px) {
  .story { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
