:root {
  --color-cream: #f7f1e8;
  --color-ivory: #fffaf3;
  --color-brown: #5f4636;
  --color-brown-dark: #35271f;
  --color-tan: #c9a987;
  --color-rose: #b9827e;
  --color-white: #ffffff;
  --color-text: #4a3a31;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--color-ivory);
  color: var(--color-text);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.logo span {
  color: #e5c6ad;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--color-white);
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background-color: #e5c6ad;
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.nav-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-order-btn:hover {
  background-color: var(--color-white);
  color: var(--color-brown-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--color-white);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(32, 21, 15, 0.35),
      rgba(32, 21, 15, 0.58)
    ),
    url("../assets/images/hero/hero-bakery.jpg");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(37, 25, 19, 0.68) 0%,
      rgba(37, 25, 19, 0.34) 48%,
      rgba(37, 25, 19, 0.1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: #ead4c0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);
  font-size: clamp(58px, 8vw, 100px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -2px;
}

.hero-description {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-cream);
  color: var(--color-brown-dark);
}

.btn-primary:hover {
  background-color: var(--color-white);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
  position: absolute;
  right: 6%;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
/* =========================
   FAVORITES SECTION
========================= */

.favorites-section {
  padding: 120px 0;
  background-color: var(--color-ivory);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-eyebrow {
  margin-bottom: 12px;
  color: var(--color-rose);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 600;
  line-height: 1;
}

.section-description {
  max-width: 580px;
  margin: 20px auto 0;
  color: #7b695d;
  font-size: 15px;
  line-height: 1.8;
}

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

.favorite-card {
  background-color: var(--color-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(64, 45, 34, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.favorite-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(64, 45, 34, 0.14);
}

.favorite-image {
  height: 330px;
  overflow: hidden;
}

.favorite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.favorite-card:hover .favorite-image img {
  transform: scale(1.05);
}

.favorite-content {
  padding: 28px;
}

.favorite-category {
  margin-bottom: 8px;
  color: var(--color-rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.favorite-content h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);
  font-size: 30px;
  font-weight: 600;
}

.favorite-content > p:not(.favorite-category) {
  color: #7c6c62;
  font-size: 14px;
  line-height: 1.8;
}

.favorite-price {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-brown);
  font-size: 16px;
  font-weight: 600;
}

.favorites-button {
  margin-top: 50px;
  text-align: center;
}

.section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--color-brown);
  border-radius: 999px;
  color: var(--color-brown);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.section-btn:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
}
/* =========================
   OUR STORY SECTION
========================= */

.story-section {
  padding: 120px 0;
  background-color: var(--color-cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
}

.story-badge {
  position: absolute;
  right: -30px;
  bottom: 45px;

  width: 145px;
  height: 145px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background-color: var(--color-brown-dark);
  color: var(--color-white);

  box-shadow: 0 15px 35px rgba(53, 39, 31, 0.2);
}

.story-badge span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-badge strong {
  margin-top: 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
}

.story-content h2 {
  max-width: 520px;
  margin-bottom: 26px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: clamp(48px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
}

.story-content > p:not(.section-eyebrow) {
  max-width: 540px;
  margin-bottom: 18px;
  color: #716057;
  font-size: 15px;
  line-height: 1.9;
}

.story-content .section-btn {
  margin-top: 18px;
}
/* =========================
   CUSTOM CAKES SECTION
========================= */

.cakes-section {
  padding: 120px 0;
  background-color: var(--color-brown-dark);
}

.cakes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.cakes-content .section-eyebrow {
  color: #d9b59e;
}

.cakes-content h2 {
  max-width: 560px;
  margin-bottom: 26px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);

  font-size: clamp(48px, 5vw, 70px);
  font-weight: 600;
  line-height: 1;
}

.cakes-content > p:not(.section-eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.cakes-content .section-btn {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.cakes-content .section-btn:hover {
  background-color: var(--color-white);
  color: var(--color-brown-dark);
}

.cakes-image {
  overflow: hidden;
  border-radius: 28px;
}

.cakes-image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cakes-image:hover img {
  transform: scale(1.04);
}
/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
  padding: 120px 0;
  background-color: var(--color-ivory);
}

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

.testimonial-card {
  padding: 38px;
  border: 1px solid rgba(95, 70, 54, 0.12);
  border-radius: 22px;
  background-color: var(--color-white);
  box-shadow: 0 12px 40px rgba(64, 45, 34, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(64, 45, 34, 0.12);
}

.featured-review {
  background-color: var(--color-cream);
}

.testimonial-stars {
  margin-bottom: 22px;
  color: var(--color-tan);
  font-size: 18px;
  letter-spacing: 4px;
}

.testimonial-text {
  margin-bottom: 30px;
  color: #67574e;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.5;
}

.testimonial-author h3 {
  margin-bottom: 3px;
  color: var(--color-brown-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
}

.testimonial-author span {
  color: #9b887b;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* =========================
   FINAL CTA
========================= */

.cta-section {
  position: relative;
  min-height: 600px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      rgba(44, 29, 21, 0.35),
      rgba(44, 29, 21, 0.6)
    ),
    url("../assets/images/hero/cta-bakery.jpg");

  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(42, 29, 22, 0.72),
    rgba(42, 29, 22, 0.35)
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content .section-eyebrow {
  color: #ead4c0;
}

.cta-content h2 {
  max-width: 760px;
  margin: 0 auto;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);

  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  line-height: 1;
}

.cta-content > p:not(.section-eyebrow) {
  max-width: 600px;
  margin: 24px auto 0;

  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

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

  margin-top: 34px;
}
/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 80px 0 24px;
  background-color: #2d211b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);

  font-size: 32px;
  font-weight: 700;
}

.footer-logo span {
  color: #d9b59e;
}

.footer-brand p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);

  font-size: 22px;
  font-weight: 600;
}

.footer-column a {
  width: fit-content;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

.footer-column p {
  font-size: 14px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 12px;
}
/* =========================
   INNER PAGE HERO
========================= */

.inner-header {
  position: absolute;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.menu-hero {
  background-image:
    linear-gradient(
      rgba(38, 25, 18, 0.4),
      rgba(38, 25, 18, 0.62)
    ),
    url("../assets/images/hero/menu-hero.jpg");
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 31, 23, 0.7),
    rgba(45, 31, 23, 0.2)
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.page-hero-content .section-eyebrow {
  color: #ead4c0;
}

.page-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 600;
  line-height: 0.95;
}

.page-hero-content > p:not(.section-eyebrow) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   MENU INTRO
========================= */

.menu-intro {
  padding: 100px 0 60px;
  background-color: var(--color-ivory);
}

/* =========================
   MENU SECTION
========================= */

.menu-section {
  padding: 40px 0 120px;
  background-color: var(--color-ivory);
}

.menu-category + .menu-category {
  margin-top: 90px;
}

.menu-category-heading {
  margin-bottom: 35px;
}

.menu-category-heading h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(95, 70, 54, 0.16);
}

.menu-item h3 {
  margin-bottom: 7px;
  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);
  font-size: 25px;
  font-weight: 600;
}

.menu-item p {
  max-width: 420px;
  color: #806e63;
  font-size: 13px;
  line-height: 1.7;
}

.menu-item > span {
  flex-shrink: 0;
  color: var(--color-brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  background-image:
    linear-gradient(
      rgba(38, 25, 18, 0.4),
      rgba(38, 25, 18, 0.62)
    ),
    url("../assets/images/hero/about-hero.jpg");
}

/* ABOUT STORY */

.about-story-section {
  padding: 120px 0;
  background-color: var(--color-ivory);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-story-content h2 {
  max-width: 600px;
  margin-bottom: 28px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: clamp(48px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
}

.about-story-content > p:not(.section-eyebrow) {
  max-width: 570px;
  margin-bottom: 18px;

  color: #746259;
  font-size: 15px;
  line-height: 1.9;
}

.about-story-image {
  overflow: hidden;
  border-radius: 28px;
}

.about-story-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-story-image:hover img {
  transform: scale(1.04);
}

/* VALUES */

.values-section {
  padding: 120px 0;
  background-color: var(--color-cream);
}

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

.value-card {
  padding: 40px 34px;
  border-radius: 22px;
  background-color: var(--color-white);
  box-shadow: 0 12px 40px rgba(64, 45, 34, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(64, 45, 34, 0.12);
}

.value-card > span {
  display: inline-block;
  margin-bottom: 26px;

  color: var(--color-rose);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}

.value-card h3 {
  margin-bottom: 15px;

  color: var(--color-brown-dark);
  font-family: "Cormorant Garamond", serif;

  font-size: 30px;
  font-weight: 600;
}

.value-card p {
  color: #7a685e;
  font-size: 14px;
  line-height: 1.8;
}

/* ABOUT CTA */

.about-cta {
  padding: 120px 0;
  background-color: var(--color-brown-dark);
}

.about-cta-content {
  max-width: 800px;
  text-align: center;
}

.about-cta-content .section-eyebrow {
  color: #d9b59e;
}

.about-cta-content h2 {
  margin-bottom: 24px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);

  font-size: clamp(50px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
}

.about-cta-content > p:not(.section-eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;

  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.9;
}

.about-cta .section-btn {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.about-cta .section-btn:hover {
  background-color: var(--color-white);
  color: var(--color-brown-dark);
}
/* =========================
   CUSTOM CAKES PAGE
========================= */

.custom-cakes-hero {
  background-image:
    linear-gradient(
      rgba(38, 25, 18, 0.4),
      rgba(38, 25, 18, 0.62)
    ),
    url("../assets/images/hero/custom-cakes-hero.jpg");
}

/* CAKE INTRO */

.cake-intro-section {
  padding: 120px 0;
  background-color: var(--color-ivory);
}

.cake-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.cake-intro-image {
  overflow: hidden;
  border-radius: 28px;
}

.cake-intro-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cake-intro-image:hover img {
  transform: scale(1.04);
}

.cake-intro-content h2 {
  max-width: 560px;
  margin-bottom: 26px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: clamp(50px, 5vw, 70px);
  font-weight: 600;
  line-height: 1;
}

.cake-intro-content > p:not(.section-eyebrow) {
  max-width: 540px;
  margin-bottom: 18px;

  color: #746259;
  font-size: 15px;
  line-height: 1.9;
}

/* CAKE PROCESS */

.cake-process-section {
  padding: 120px 0;
  background-color: var(--color-cream);
}

.cake-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cake-process-card {
  padding: 40px 34px;
  border-radius: 22px;
  background-color: var(--color-white);
  box-shadow: 0 12px 40px rgba(64, 45, 34, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.cake-process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(64, 45, 34, 0.12);
}

.cake-process-card > span {
  display: inline-block;
  margin-bottom: 24px;

  color: var(--color-rose);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}

.cake-process-card h3 {
  margin-bottom: 14px;

  color: var(--color-brown-dark);
  font-family: "Cormorant Garamond", serif;

  font-size: 30px;
  font-weight: 600;
}

.cake-process-card p {
  color: #7b695f;
  font-size: 14px;
  line-height: 1.8;
}

/* CAKE REQUEST FORM */

.cake-request-section {
  padding: 120px 0;
  background-color: var(--color-brown-dark);
}

.cake-request-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.cake-request-content .section-eyebrow {
  color: #d9b59e;
}

.cake-request-content h2 {
  max-width: 480px;
  margin-bottom: 24px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);

  font-size: clamp(50px, 5vw, 70px);
  font-weight: 600;
  line-height: 1;
}

.cake-request-content > p:not(.section-eyebrow) {
  max-width: 450px;

  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.cake-form {
  padding: 40px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;

  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  outline: none;

  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);

  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d9b59e;
  background-color: rgba(255, 255, 255, 0.11);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group select option {
  color: var(--color-brown-dark);
}

.cake-submit-btn {
  width: 100%;
  min-height: 54px;

  border: none;
  border-radius: 999px;

  background-color: var(--color-cream);
  color: var(--color-brown-dark);

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.cake-submit-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-white);
}
/* =========================
   GALLERY PAGE
========================= */

.gallery-hero {
  background-image:
    linear-gradient(
      rgba(38, 25, 18, 0.4),
      rgba(38, 25, 18, 0.62)
    ),
    url("../assets/images/hero/gallery-hero.jpg");
}

/* GALLERY INTRO */

.gallery-intro {
  padding: 100px 0 55px;
  background-color: var(--color-ivory);
}

/* GALLERY GRID */

.gallery-section {
  padding: 20px 0 120px;
  background-color: var(--color-ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  position: relative;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(53, 39, 31, 0);
  transition: background 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  background: rgba(53, 39, 31, 0.12);
}

/* GALLERY CTA */

.gallery-cta {
  padding: 120px 0;
  background-color: var(--color-cream);
}

.gallery-cta-content {
  max-width: 780px;
  text-align: center;
}

.gallery-cta-content h2 {
  margin-bottom: 22px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: clamp(50px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
}

.gallery-cta-content > p:not(.section-eyebrow) {
  max-width: 600px;
  margin: 0 auto;

  color: #746259;
  font-size: 15px;
  line-height: 1.9;
}

.gallery-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
  background-image:
    linear-gradient(
      rgba(38, 25, 18, 0.4),
      rgba(38, 25, 18, 0.62)
    ),
    url("../assets/images/hero/contact-hero.jpg");
}

/* CONTACT DETAILS */

.contact-details-section {
  padding: 100px 0;
  background-color: var(--color-ivory);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-detail-card {
  padding: 36px 30px;
  border-radius: 22px;
  background-color: var(--color-white);
  box-shadow: 0 12px 40px rgba(64, 45, 34, 0.06);
}

.contact-number {
  margin-bottom: 20px;
  color: var(--color-rose);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}

.contact-detail-card h2 {
  margin-bottom: 14px;
  color: var(--color-brown-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
}

.contact-detail-card p {
  color: #79675e;
  font-size: 14px;
  line-height: 1.8;
}

/* CONTACT FORM */

.contact-form-section {
  padding: 120px 0;
  background-color: var(--color-brown-dark);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-form-content .section-eyebrow {
  color: #d9b59e;
}

.contact-form-content h2 {
  max-width: 500px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  color: var(--color-white);
  font-size: clamp(50px, 5vw, 70px);
  font-weight: 600;
  line-height: 1;
}

.contact-form-content > p:not(.section-eyebrow) {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.contact-form {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

/* VISIT SECTION */

.visit-section {
  padding: 120px 0;
  background-color: var(--color-cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.visit-image {
  overflow: hidden;
  border-radius: 28px;
}

.visit-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visit-image:hover img {
  transform: scale(1.04);
}

.visit-content h2 {
  max-width: 540px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);
  font-size: clamp(50px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
}

.visit-content > p:not(.section-eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  color: #746259;
  font-size: 15px;
  line-height: 1.9;
}
/* =========================
   CONFIRMATION MODAL
========================= */

.confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.confirmation-modal.active {
  opacity: 1;
  visibility: visible;
}

.confirmation-overlay {
  position: absolute;
  inset: 0;

  background-color: rgba(30, 20, 15, 0.72);
  backdrop-filter: blur(6px);
}

.confirmation-box {
  position: relative;
  z-index: 2;

  width: min(480px, 100%);
  padding: 48px 38px;

  border-radius: 26px;

  background-color: var(--color-ivory);

  text-align: center;

  box-shadow: 0 25px 70px rgba(28, 18, 13, 0.3);

  transform: translateY(20px) scale(0.97);

  transition: transform 0.3s ease;
}

.confirmation-modal.active .confirmation-box {
  transform: translateY(0) scale(1);
}

.confirmation-close {
  position: absolute;
  top: 16px;
  right: 20px;

  border: none;
  background: transparent;

  color: #8a776b;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transition: color 0.3s ease;
}

.confirmation-close:hover {
  color: var(--color-brown-dark);
}

.confirmation-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 22px;

  border-radius: 50%;

  background-color: var(--color-cream);
  color: var(--color-brown);

  font-size: 30px;
  font-weight: 600;
}

.confirmation-box h2 {
  margin-bottom: 14px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: 38px;
  font-weight: 600;
}

.confirmation-box p {
  max-width: 380px;
  margin: 0 auto;

  color: #75645a;

  font-size: 14px;
  line-height: 1.8;
}

.confirmation-button {
  min-width: 160px;
  min-height: 50px;

  margin-top: 28px;
  padding: 0 24px;

  border: none;
  border-radius: 999px;

  background-color: var(--color-brown-dark);
  color: var(--color-white);

  font-size: 13px;
  font-weight: 500;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.confirmation-button:hover {
  transform: translateY(-2px);
  background-color: var(--color-brown);
}
/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   STICKY HEADER
========================= */

.site-header.scrolled {
  position: fixed;
  padding: 14px 0;

  background-color: rgba(45, 33, 27, 0.96);
  backdrop-filter: blur(12px);

  box-shadow: 0 8px 30px rgba(32, 22, 17, 0.12);

  animation: headerDrop 0.35s ease;
}

@keyframes headerDrop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
/* =========================
   ORDER BUTTON
========================= */

.menu-item-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.menu-item-actions span {
  color: var(--color-brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}

.add-to-order-btn {
  padding: 9px 16px;

  border: 1px solid var(--color-brown);
  border-radius: 999px;

  background-color: transparent;
  color: var(--color-brown);

  font-size: 12px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.add-to-order-btn:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
}
/* =========================
   ORDER CART PANEL
========================= */

.order-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1998;

  background-color: rgba(30, 20, 15, 0.55);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.order-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-cart {
  position: fixed;
  top: 0;
  right: -460px;
  z-index: 1999;

  width: min(430px, 92%);
  height: 100vh;

  display: flex;
  flex-direction: column;

  padding: 32px;

  background-color: var(--color-ivory);

  box-shadow: -15px 0 50px rgba(42, 29, 22, 0.18);

  transition: right 0.4s ease;
}

.order-cart.active {
  right: 0;
}

.order-cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  padding-bottom: 24px;

  border-bottom: 1px solid rgba(95, 70, 54, 0.15);
}

.order-cart-header .section-eyebrow {
  margin-bottom: 5px;
}

.order-cart-header h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: 36px;
  font-weight: 600;
}

.order-cart-close {
  border: none;
  background: transparent;

  color: var(--color-brown);

  font-size: 34px;
  line-height: 1;

  cursor: pointer;
}

.order-cart-items {
  flex: 1;
  overflow-y: auto;

  padding: 24px 0;
}

.empty-cart-message {
  color: #88766b;
  font-size: 14px;
}

.order-cart-footer {
  padding-top: 24px;

  border-top: 1px solid rgba(95, 70, 54, 0.15);
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 20px;
}

.order-total span {
  color: #75645a;
  font-size: 14px;
}

.order-total strong {
  color: var(--color-brown-dark);

  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.checkout-btn {
  width: 100%;
  min-height: 54px;

  border: none;
  border-radius: 999px;

  background-color: var(--color-brown-dark);
  color: var(--color-white);

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-brown);
}
/* =========================
   CART ITEMS
========================= */

.order-cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  padding: 20px 0;

  border-bottom: 1px solid rgba(95, 70, 54, 0.12);
}

.order-cart-item h3 {
  margin-bottom: 5px;

  color: var(--color-brown-dark);
  font-family: "Cormorant Garamond", serif;

  font-size: 22px;
  font-weight: 600;
}

.order-cart-item p {
  color: #8a776c;
  font-size: 12px;
  line-height: 1.6;
}

.order-cart-item > span {
  flex-shrink: 0;

  color: var(--color-brown);
  font-family: "Cormorant Garamond", serif;

  font-size: 20px;
  font-weight: 600;
}
/* =========================
   CART QUANTITY CONTROLS
========================= */

.cart-item-info {
  flex: 1;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls span {
  min-width: 24px;
  text-align: center;

  color: var(--color-brown-dark);
  font-size: 14px;
  font-weight: 600;
}

.quantity-btn {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(95, 70, 54, 0.25);
  border-radius: 50%;

  background-color: var(--color-white);
  color: var(--color-brown-dark);

  font-size: 18px;
  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.quantity-btn:hover {
  background-color: var(--color-brown-dark);
  color: var(--color-white);
  border-color: var(--color-brown-dark);
  transform: translateY(-1px);
}

.cart-item-right strong {
  color: var(--color-brown-dark);

  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
}

.remove-cart-item {
  margin-top: 8px;

  border: none;
  background: transparent;

  color: var(--color-rose);

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;

  cursor: pointer;
}

.remove-cart-item:hover {
  text-decoration: underline;
}
/* =========================
   CHECKOUT MODAL
========================= */

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.checkout-modal.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-overlay {
  position: absolute;
  inset: 0;

  background-color: rgba(30, 20, 15, 0.72);
  backdrop-filter: blur(6px);
}

.checkout-modal-box {
  position: relative;
  z-index: 2;

  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;

  padding: 42px;

  border-radius: 26px;

  background-color: var(--color-ivory);

  box-shadow: 0 25px 70px rgba(28, 18, 13, 0.3);

  transform: translateY(20px) scale(0.97);

  transition: transform 0.3s ease;
}

.checkout-modal.active .checkout-modal-box {
  transform: translateY(0) scale(1);
}

.checkout-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;

  border: none;
  background: transparent;

  color: #8a776b;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;
}

.checkout-modal-close:hover {
  color: var(--color-brown-dark);
}

.checkout-modal-box .section-eyebrow {
  margin-bottom: 8px;
}

.checkout-modal-box h2 {
  margin-bottom: 12px;

  font-family: "Cormorant Garamond", serif;
  color: var(--color-brown-dark);

  font-size: 42px;
  font-weight: 600;
}

.checkout-modal-text {
  margin-bottom: 28px;

  color: #75645a;

  font-size: 14px;
  line-height: 1.8;
}

.checkout-modal-box .form-group label {
  color: var(--color-brown-dark);
}

.checkout-modal-box .form-group input,
.checkout-modal-box .form-group select {
  border: 1px solid rgba(95, 70, 54, 0.2);

  background-color: var(--color-white);
  color: var(--color-brown-dark);
}

.checkout-modal-box .form-group input::placeholder {
  color: #a49388;
}

.checkout-modal-box .form-group input:focus,
.checkout-modal-box .form-group select:focus {
  border-color: var(--color-brown);
  background-color: var(--color-white);
}

.checkout-modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 28px 0 22px;
  padding-top: 22px;

  border-top: 1px solid rgba(95, 70, 54, 0.15);
}

.checkout-modal-total span {
  color: #75645a;
  font-size: 14px;
}

.checkout-modal-total strong {
  color: var(--color-brown-dark);

  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
}

.checkout-submit-btn {
  width: 100%;
  min-height: 54px;

  border: none;
  border-radius: 999px;

  background-color: var(--color-brown-dark);
  color: var(--color-white);

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.checkout-submit-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-brown);
}
/* =========================
   ORDER COUNT
========================= */

.nav-order-btn {
  gap: 8px;
}

.order-count {
  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background-color: var(--color-cream);
  color: var(--color-brown-dark);

  font-size: 11px;
  font-weight: 700;
}