:root {
  --c-sand: #eaddcf;
  --c-navy: #1b2a41;
  --c-mint: #6ca08e;
  --c-bluegray: #5e7382;
  --c-bg: #fdfbf7;
  --font-base: system-ui, -apple-system, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --radius-lg: 16px;
  --border-width: 2px;
  --space-md: 2rem;
  --space-lg: 4rem;
}
body {
  margin: 0;
  font-family: var(--font-base);
  background-color: var(--c-bg);
  color: var(--c-navy);
  line-height: 1.6;
}
a {
  color: var(--c-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--c-mint);
}
h1,
h2,
h3,
h4,
h5,
h6,
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-stretch: condensed;
  letter-spacing: -0.05em;
  margin: 0;
}
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  border-bottom: var(--border-width) solid var(--c-mint);
  background-color: var(--c-sand);
  text-align: center;
  gap: 1.5rem;
}
.header-logo-container .brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.25rem;
  color: var(--c-navy);
}
.header-logo-container svg {
  width: 48px;
  height: 48px;
  color: var(--c-mint);
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-list a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover {
  border-bottom: 2px solid var(--c-mint);
}
.btn-cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: var(--border-width) solid var(--c-mint);
  border-radius: var(--radius-lg);
  background-color: var(--c-navy);
  color: var(--c-bg);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.btn-cta:hover {
  background-color: var(--c-mint);
  color: var(--c-navy);
}
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  border-top: var(--border-width) solid var(--c-mint);
  background-color: var(--c-navy);
  color: var(--c-bg);
  text-align: center;
  gap: 2rem;
}
.site-footer a {
  color: var(--c-mint);
}
.site-footer a:hover {
  color: var(--c-sand);
}
.footer-brand h2 {
  font-size: 2.5rem;
  color: var(--c-mint);
  margin-bottom: 0.25rem;
}
.footer-brand .tagline {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  margin: 0;
  color: var(--c-sand);
}
.footer-contact {
  border: var(--border-width) solid var(--c-bluegray);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
  position: relative;
}
.footer-contact::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: var(--c-mint);
  opacity: 0.5;
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 1.5rem;
}
.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.footer-legal {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--c-bluegray);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 400px;
  justify-content: center;
}
.full-width-photo {
  width: 100vw;
  max-width: 100%;
  height: auto;
  display: block;
  border-top: var(--border-width) solid var(--c-mint);
  border-bottom: var(--border-width) solid var(--c-mint);
}
.hero-fullscreen {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-bottom: var(--border-width) solid var(--c-mint);
}
.hero-fullscreen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 42, 65, 0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--c-bg);
  padding: var(--space-md);
  max-width: 800px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--c-sand);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */

@media (max-width: 765px) {
  .asdasdasd {
    display: none;
  }
}