:root {
  --honey: #e0a526;
  --honey-dark: #b9770e;
  --charcoal: #2b2118;
  --cream: #fff8ec;
  --cream-2: #fdeecb;
  --text: #382b1c;
  --muted: #6b5c47;
  --radius: 14px;
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a {
  color: var(--honey-dark);
}

img {
  max-width: 100%;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--charcoal);
  padding: 18px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: inline-block;
}

nav.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: #f2e6cf;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current='page'] {
  color: var(--honey);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.tagline {
  font-size: 1.2rem;
  color: var(--honey-dark);
  font-weight: 600;
  margin-bottom: 1em;
}

.lede {
  max-width: 640px;
  margin: 0 auto 1.6em;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--honey);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--honey-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: #fff;
}

/* Sections */
section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

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

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.band {
  background: var(--charcoal);
  color: #f2e6cf;
}

.band .section-title,
.band h2 {
  color: #fff;
}

.band .section-sub {
  color: #cbb894;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list .label {
  color: #cbb894;
  font-weight: 600;
}

/* Contact form */
form.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

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

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddc99a;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

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

form.contact-form button {
  justify-self: start;
}

.divider-or {
  text-align: center;
  color: var(--muted);
  margin: 34px 0;
  font-weight: 600;
  position: relative;
}

/* Footer */
footer.site-footer {
  background: var(--charcoal);
  color: #cbb894;
  padding: 34px 0;
  text-align: center;
  font-size: 0.92rem;
}

footer.site-footer .footer-brand {
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

footer.site-footer a {
  color: var(--honey);
}

@media (max-width: 560px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Photo band */
.photo-band {
  padding-top: 0;
}

.photo-band .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(43, 33, 24, 0.15);
}

.photo-band img {
  width: 100%;
  display: block;
}

.photo-caption {
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.98rem;
}
