:root {
  --leaf: #2f5d3a;
  --leaf-dark: #173321;
  --moss: #6d7b43;
  --clay: #b05f3c;
  --cream: #fff8ec;
  --milk: #f7ead5;
  --coffee: #3b2418;
  --ink: #211b16;
  --muted: #726557;
  --line: rgba(47, 93, 58, 0.18);
  --shadow: 0 18px 45px rgba(33, 27, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fffdf6;
  background: linear-gradient(180deg, rgba(23, 51, 33, 0.88), rgba(23, 51, 33, 0.08));
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.12);
  box-shadow: 0 8px 20px rgba(23, 51, 33, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 12px;
  opacity: 0.82;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-weight: 600;
}

.nav-links a,
.header-action {
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.header-action:hover {
  opacity: 0.78;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  place-items: center start;
  padding: 130px clamp(20px, 6vw, 78px) 76px;
  color: #fffdf6;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/ray-cua-me-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 51, 33, 0.88), rgba(23, 51, 33, 0.48) 48%, rgba(23, 51, 33, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(23, 51, 33, 0.36));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4d29c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 24px 0 30px;
  color: rgba(255, 253, 246, 0.9);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.btn,
.order-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary,
.order-form button {
  color: #fffdf6;
  background: var(--leaf);
}

.btn.secondary {
  color: #fffdf6;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 76px clamp(20px, 6vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  background: var(--leaf-dark);
}

.intro-item {
  min-height: 230px;
  padding: 34px;
  color: #fff8ec;
  background: rgba(255, 248, 236, 0.06);
}

.intro-item span,
.combo-list span {
  color: #f4d29c;
  font-weight: 800;
}

.intro-item h2,
.section-heading h2,
.story-band h2,
.order-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.intro-item h2 {
  margin-top: 24px;
  font-size: 28px;
}

.intro-item p {
  color: rgba(255, 248, 236, 0.78);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card,
.combo-list article,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.menu-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 24px;
}

.menu-category {
  min-height: 430px;
}

.menu-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--milk);
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  content: "";
}

.menu-icon.coffee::before {
  inset: 16px 13px;
  border-radius: 50%;
  background: var(--coffee);
  box-shadow: 12px -4px 0 #6d3f25;
}

.menu-icon.brew::before {
  inset: 15px 17px;
  border: 4px solid var(--moss);
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.menu-icon.milk::before {
  inset: 12px 19px 9px;
  border-radius: 8px 8px 14px 14px;
  background: #fffaf0;
  border: 2px solid var(--leaf);
}

.menu-icon.cake::before {
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 22px;
  border-radius: 5px;
  background: var(--clay);
}

.menu-type {
  margin: 0 0 6px;
  color: var(--clay);
  font-weight: 800;
}

.menu-card h3,
.combo-list h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}

.menu-card p:not(.menu-type),
.combo-list p,
.story-band p,
.order-copy p,
.form-note {
  color: var(--muted);
}

.menu-card strong,
.combo-list strong {
  margin-top: auto;
  color: var(--leaf);
  font-size: 20px;
}

.menu-items {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.menu-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px dashed rgba(47, 93, 58, 0.2);
  padding-bottom: 12px;
}

.menu-items li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-items span {
  color: var(--coffee);
  font-weight: 700;
}

.menu-items strong {
  margin-top: 0;
  color: var(--leaf);
  font-size: 17px;
  white-space: nowrap;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  padding: 88px clamp(20px, 6vw, 78px);
  background: var(--milk);
}

.story-band p {
  margin: 0;
  font-size: 20px;
}

.combo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.combo-list article {
  padding: 24px;
}

.news-section {
  background: #fffaf0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-list article {
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  padding: 24px;
  background: rgba(47, 93, 58, 0.06);
}

.news-list span {
  color: var(--clay);
  font-weight: 800;
}

.news-list h3 {
  margin: 10px 0;
  font-size: 23px;
  line-height: 1.15;
}

.news-list p {
  margin: 0;
  color: var(--muted);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 76px);
  padding: 80px clamp(20px, 6vw, 78px);
  background: var(--leaf-dark);
  color: #fff8ec;
}

.order-copy p {
  color: rgba(255, 248, 236, 0.78);
  font-size: 18px;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: #fffaf0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--coffee);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(47, 93, 58, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 78px);
  background: #fffaf0;
  color: var(--coffee);
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links a {
  font-weight: 800;
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
  }

  .intro,
  .menu-grid,
  .combo-list,
  .news-list,
  .story-band,
  .order-section {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .header-action {
    display: none;
  }

  .brand {
    flex: 1 1 100%;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 108px 18px 54px;
  }

  .hero-media {
    background-image: url("assets/ray-cua-me-hero-mobile.png");
    background-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 51, 33, 0.92), rgba(23, 51, 33, 0.52)),
      linear-gradient(180deg, rgba(23, 51, 33, 0.22), rgba(23, 51, 33, 0.18) 45%, rgba(23, 51, 33, 0.5));
  }

  .section,
  .story-band,
  .order-section {
    padding: 54px 18px;
  }

  .intro {
    padding-top: 0;
  }

  .intro-item {
    min-height: 0;
    padding: 26px 18px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
