:root {
  --ink: #1d2521;
  --muted: #627067;
  --paper: #fbf7ef;
  --soft: #efe6d7;
  --sage: #6d8a75;
  --terra: #bd6f4b;
  --clay: #d7a264;
  --cream: #fffaf0;
  --line: rgba(29, 37, 33, 0.14);
  --shadow: 0 24px 80px rgba(32, 39, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), 1180px);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 18px 60px rgba(17, 24, 20, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.94);
  border-color: rgba(29, 37, 33, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  overflow: hidden;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(29, 37, 33, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 10px 0;
}

.header-action,
.primary-button,
.secondary-button,
.text-link,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action {
  padding: 0 16px;
  color: var(--cream);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(29, 37, 33, 0.08);
}

.mobile-menu {
  position: fixed;
  top: 92px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.97);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-menu a {
  display: block;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.mobile-menu a:first-child {
  border-top: 0;
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 54px;
  color: var(--cream);
  background: #1d2521;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  background:
    linear-gradient(90deg, rgba(29, 37, 33, 0.95), rgba(29, 37, 33, 0.42)),
    #1d2521;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 27, 23, 0.88) 0%, rgba(21, 27, 23, 0.58) 42%, rgba(21, 27, 23, 0.14) 78%),
    linear-gradient(0deg, rgba(21, 27, 23, 0.68) 0%, rgba(21, 27, 23, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding-bottom: 102px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c489;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 620px;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 604px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button {
  padding: 0 22px;
  color: var(--ink);
  background: var(--cream);
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  color: var(--cream);
  background: rgba(255, 250, 240, 0.11);
  backdrop-filter: blur(10px);
}

.secondary-button.warm {
  color: var(--ink);
  border-color: rgba(29, 37, 33, 0.18);
  background: rgba(255, 250, 240, 0.7);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 96px;
  padding: 18px;
  border-left: 1px solid rgba(255, 250, 240, 0.24);
}

.hero-panel div:first-child {
  border-left: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-panel span {
  color: rgba(255, 250, 240, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.intro-band,
.features,
.programs,
.breakfast-showcase,
.photo-story,
.celebration,
.contact {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.breakfast-showcase {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  margin-top: 72px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.breakfast-showcase > img,
.breakfast-overlay {
  position: absolute;
  inset: 0;
}

.breakfast-showcase > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breakfast-overlay {
  background:
    linear-gradient(90deg, rgba(29, 37, 33, 0.86), rgba(29, 37, 33, 0.54) 47%, rgba(29, 37, 33, 0.12)),
    linear-gradient(0deg, rgba(29, 37, 33, 0.72), rgba(29, 37, 33, 0.02) 58%);
}

.breakfast-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 70px;
}

.breakfast-content .section-label {
  color: #f0c489;
}

.breakfast-content h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.breakfast-content p {
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

.breakfast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breakfast-strip {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 148px);
  gap: 12px;
}

.breakfast-strip img {
  width: 148px;
  height: 196px;
  object-fit: cover;
  border: 2px solid rgba(255, 250, 240, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.intro-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  padding: 82px 0 54px;
}

.intro-text h2,
.section-heading h2,
.celebration h2,
.contact h2 {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-text h2 {
  max-width: 950px;
  margin-bottom: 22px;
}

.intro-text p,
.celebration p,
.contact p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 84px;
}

.features article,
.program-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.features article {
  min-height: 238px;
  padding: 30px;
}

.features i,
.celebration-list i {
  width: 24px;
  height: 24px;
  color: var(--sage);
}

.features h3,
.program-card h3 {
  margin: 22px 0 12px;
  font-size: 24px;
}

.features p,
.program-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.programs {
  padding: 78px 0 92px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.text-link {
  flex: 0 0 auto;
  color: var(--terra);
}

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

.program-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.program-card > img {
  width: calc(100% + 56px);
  height: 190px;
  margin: -28px -28px 24px;
  object-fit: cover;
}

.program-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--terra);
  background: rgba(189, 111, 75, 0.12);
  font-weight: 800;
}

.program-card h3 {
  margin-top: auto;
}

.featured-card {
  color: var(--cream);
  background: var(--sage);
  border-color: transparent;
}

.featured-card span {
  color: var(--ink);
  background: var(--cream);
}

.featured-card p {
  color: rgba(255, 250, 240, 0.78);
}

.featured-card > img {
  opacity: 0.92;
}

.photo-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 16px;
  padding-bottom: 76px;
}

.photo-story img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(32, 39, 34, 0.12);
}

.photo-story img:nth-child(2) {
  margin-top: 42px;
}

.celebration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
  padding: 76px;
  border-radius: 8px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(29, 37, 33, 0.96), rgba(109, 138, 117, 0.92)),
    var(--ink);
}

.celebration .section-label {
  color: #f0c489;
}

.celebration p {
  color: rgba(255, 250, 240, 0.78);
}

.celebration-list {
  display: grid;
  gap: 12px;
}

.celebration-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.09);
  font-weight: 800;
}

.celebration-list i {
  flex: 0 0 auto;
  color: #f0c489;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
  padding: 94px 0 78px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.contact-detail i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--terra);
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.contact-detail span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: 0 18px 70px rgba(32, 39, 34, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cream);
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(109, 138, 117, 0.14);
}

.contact-form button {
  min-height: 52px;
  border: 0;
  color: var(--cream);
  background: var(--ink);
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.footer-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  overflow: hidden;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
  }

  .hero-content {
    padding-bottom: 168px;
  }

  .hero-panel {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .intro-band,
  .features,
  .program-grid,
  .photo-story,
  .celebration,
  .contact {
    grid-template-columns: 1fr;
  }

  .breakfast-showcase {
    min-height: 720px;
  }

  .breakfast-content {
    padding: 44px 28px 260px;
  }

  .breakfast-strip {
    left: 28px;
    right: 28px;
    bottom: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breakfast-strip img {
    width: 100%;
    height: 212px;
  }

  .photo-story img,
  .photo-story img:nth-child(2) {
    height: 320px;
    margin-top: 0;
  }

  .intro-band {
    gap: 12px;
  }

  .features {
    padding-bottom: 54px;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    margin-top: 18px;
  }

  .celebration {
    padding: 44px 28px;
  }

  .contact {
    gap: 28px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 62px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .mobile-menu {
    top: 82px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 90vh;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 26px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(21, 27, 23, 0.82), rgba(21, 27, 23, 0.38)),
      linear-gradient(0deg, rgba(21, 27, 23, 0.72) 0%, rgba(21, 27, 23, 0.04) 54%);
  }

  .hero-image {
    object-fit: cover;
    object-position: 58% center;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-panel div {
    min-height: 78px;
    padding: 12px;
  }

  .hero-panel strong {
    font-size: 16px;
  }

  .hero-panel span {
    font-size: 11px;
  }

  .intro-band,
  .features,
  .programs,
  .breakfast-showcase,
  .photo-story,
  .celebration,
  .contact,
  footer {
    width: calc(100% - 36px);
  }

  .intro-band {
    padding-top: 58px;
  }

  .breakfast-showcase {
    width: calc(100% - 24px);
    min-height: 760px;
    margin-top: 42px;
  }

  .breakfast-content {
    padding: 34px 20px 258px;
  }

  .breakfast-content h2 {
    font-size: 40px;
  }

  .breakfast-content p {
    font-size: 17px;
  }

  .breakfast-actions {
    display: grid;
  }

  .breakfast-strip {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .breakfast-strip img {
    height: 190px;
  }

  .features article,
  .program-card {
    min-height: auto;
    padding: 24px;
  }

  .programs {
    padding: 52px 0 60px;
  }

  .program-card > img {
    height: 210px;
  }

  .celebration {
    width: calc(100% - 24px);
    padding: 36px 20px;
  }

  .contact {
    padding-top: 64px;
  }

  .contact-form {
    padding: 18px;
  }

  footer {
    display: grid;
  }
}
