:root {
  --cream: #f8f3ea;
  --warm-cream: #fffaf3;
  --tan: #e9dcc8;
  --wheat: #d5b36b;
  --blue: #7d99a6;
  --deep-blue: #3f5f6e;
  --brown: #7b5b43;
  --dark: #25323a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(37, 50, 58, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #fffdf9, var(--cream));
  color: var(--dark);
}

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

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

.site-header {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 20px auto 0;
  padding: 16px 22px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(125, 153, 166, 0.18);
  box-shadow: var(--shadow);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: sticky;
  top: 16px;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--warm-cream);
}

.brand span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-blue);
}

.brand small {
  display: block;
  font-size: 0.86rem;
  color: var(--brown);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark);
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--deep-blue);
}

main {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  padding: 70px 0 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--deep-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.04;
  color: var(--dark);
}

.hero-text,
.page-hero p,
.section-heading p,
.about-text p,
.contact-text p,
.market-left p,
.menu-note p {
  color: #51636d;
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions,
.contact-buttons,
.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

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

.btn.primary {
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(63, 95, 110, 0.2);
}

.btn.secondary {
  background: var(--white);
  color: var(--deep-blue);
  border-color: rgba(63, 95, 110, 0.2);
}

.btn.tertiary {
  background: #efe5d8;
  color: var(--brown);
  border-color: rgba(123, 91, 67, 0.12);
}

.hero-card {
  background: linear-gradient(180deg, #fffaf4, #f3e7d6);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(125, 153, 166, 0.12);
}

.hero-card img {
  width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 14px 28px rgba(37, 50, 58, 0.12);
}

.hero-note {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 18px;
  width: 100%;
}

.hero-note span {
  display: block;
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hero-note strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 52px;
}

.strip-card {
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125, 153, 166, 0.1);
}

.strip-card strong {
  display: block;
  color: var(--deep-blue);
  font-size: 1rem;
  margin-bottom: 6px;
}

.strip-card span {
  color: #5f6d74;
  line-height: 1.6;
}

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.market-left h2,
.about-text h2,
.contact-text h2,
.menu-note h2,
.menu-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--dark);
}

.feature-grid,
.gallery-grid,
.menu-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125, 153, 166, 0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--deep-blue);
}

.feature-card p {
  margin: 0;
  color: #5c6b73;
  line-height: 1.7;
}

.market-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 52px 0;
}

.market-left,
.market-info-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125, 153, 166, 0.08);
}

.market-left {
  background: linear-gradient(135deg, #fffaf4 0%, #f0e4d3 100%);
}

.market-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.market-badges span {
  background: rgba(255, 255, 255, 0.85);
  color: var(--brown);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.market-info-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--deep-blue);
  font-size: 1.4rem;
}

.info-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(37, 50, 58, 0.08);
}

.info-row:last-of-type {
  border-bottom: none;
  margin-bottom: 12px;
}

.info-row span {
  display: block;
  color: #73828a;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.info-row strong {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.5;
}

.full-btn {
  width: 100%;
  margin-top: 18px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  align-items: center;
}

.about-logo {
  background: #fff8f0;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo img {
  width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 14px 28px rgba(37, 50, 58, 0.1);
}

.about-text {
  background: var(--white);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.photo-placeholder {
  min-height: 180px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f1e4d3, #d8e2e7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-weight: 700;
  text-align: center;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-radius: 30px;
  padding: 36px;
  margin: 24px 0 60px;
  box-shadow: var(--shadow);
}

.page-hero {
  text-align: center;
  padding: 74px 0 26px;
  max-width: 760px;
  margin: 0 auto;
}

.menu-grid {
  grid-template-columns: repeat(2, 1fr);
}

.menu-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125, 153, 166, 0.08);
}

.menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37, 50, 58, 0.08);
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-card li span {
  color: var(--dark);
  line-height: 1.5;
}

.menu-card li strong {
  color: var(--brown);
  white-space: nowrap;
}

.menu-note-section {
  padding-top: 10px;
  padding-bottom: 60px;
}

.menu-note {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
  text-align: center;
}

.site-footer {
  text-align: center;
  padding: 20px 16px 36px;
  color: #6f7a80;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero,
  .market-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .gallery-grid,
  .menu-grid,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-card img,
  .about-logo img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 14px 16px;
  }

  main {
    width: calc(100% - 20px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-card,
  .market-left,
  .market-info-card,
  .about-text,
  .about-logo,
  .contact-section,
  .menu-card,
  .menu-note,
  .strip-card,
  .feature-card {
    padding: 22px;
  }

  .contact-buttons,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

.menu-hero {
  position: relative;
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 50%;
  width: 180px;
  height: 180px;
  background: rgba(213, 179, 107, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.menu-hero-card {
  margin: 28px auto 0;
  max-width: 520px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(125, 153, 166, 0.14);
  border-radius: 999px;
  padding: 12px 18px 12px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  text-align: left;
}

.menu-hero-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 20px;
}

.menu-hero-card strong {
  display: block;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.menu-hero-card span {
  color: #64727a;
  font-size: 0.94rem;
}

.menu-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  margin: 28px 0 10px;
}

.menu-featured-text,
.menu-featured-box {
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.menu-featured-text {
  background: linear-gradient(135deg, #fffaf4, #f0e4d3);
}

.menu-featured-text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.menu-featured-text p {
  color: #51636d;
  line-height: 1.75;
}

.menu-featured-box {
  background: var(--deep-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-featured-box span {
  color: #dbe7ec;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.menu-featured-box strong {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.menu-featured-box a {
  color: var(--deep-blue);
  background: var(--warm-cream);
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

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

.pretty-menu-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 153, 166, 0.12);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pretty-menu-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  background: rgba(125, 153, 166, 0.13);
  border-radius: 50%;
}

.pretty-menu-card.special-card::after {
  background: rgba(213, 179, 107, 0.18);
}

.menu-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.menu-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #f1e4d3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}

.menu-card-top p {
  margin: 0 0 4px;
  color: var(--brown);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-card-top h2 {
  margin: 0;
  color: var(--deep-blue);
  font-size: 1.7rem;
}

.pretty-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.pretty-menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(37, 50, 58, 0.16);
}

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

.pretty-menu-list span {
  color: var(--dark);
  line-height: 1.5;
}

.pretty-menu-list strong {
  color: var(--brown);
  white-space: nowrap;
}

.order-callout {
  margin: 0 0 60px;
  padding: 34px;
  background: linear-gradient(135deg, #fffaf4, #dbe7ec);
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
}

.order-callout h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.order-callout p {
  color: #51636d;
  line-height: 1.75;
}

.developer-credit a {
  color: var(--deep-blue);
  font-weight: 800;
}

.developer-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .menu-featured,
  .pretty-menu-grid,
  .order-callout {
    grid-template-columns: 1fr;
  }

  .menu-hero-card {
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .menu-hero-card {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .pretty-menu-list li {
    flex-direction: column;
    gap: 4px;
  }

  .pretty-menu-list strong {
    white-space: normal;
  }
}

.brand img,
.hero-card img,
.about-logo img,
.menu-hero-card img {
  border-radius: 28px;
  overflow: hidden;
  object-fit: cover;
}

.contact-email {
  margin-top: 14px;
  font-weight: 700;
  color: var(--deep-blue);
}

.contact-email a {
  color: var(--deep-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bundle-card {
  background: linear-gradient(135deg, #fffaf4, #e9dcc8);
}

.bundle-price {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(63, 95, 110, 0.35);
  border-radius: 24px;
  padding: 22px;
  text-align: center;
}

.bundle-price span {
  display: block;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.6;
}

.bundle-price span:nth-child(2) {
  color: var(--deep-blue);
  font-weight: 900;
  font-size: 1.4rem;
  margin: 2px 0;
}

.bundle-price strong {
  display: inline-flex;
  margin-top: 16px;
  background: var(--deep-blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(63, 95, 110, 0.18);
}

.contact-email {
  margin-top: 14px;
  font-weight: 700;
  color: var(--deep-blue);
}

.contact-email a {
  color: var(--deep-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pretty-menu-card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}

.pretty-menu-list li:hover span,
.pretty-menu-list li:hover strong {
  color: var(--deep-blue);
}

.start-order-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.start-order-btn {
  font-size: 1rem;
  padding: 15px 30px;
}

.bottom-order-button {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.order-builder-section {
  padding: 54px 0;
}

.order-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.order-builder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.customer-info-card,
.order-category,
.submit-order-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 153, 166, 0.12);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.customer-info-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #fffaf4, #e9dcc8);
}

.customer-info-card h3,
.order-category h3,
.submit-order-card h3 {
  margin: 0 0 18px;
  color: var(--deep-blue);
  font-size: 1.45rem;
}

.customer-info-card label {
  display: block;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.customer-info-card input,
.customer-info-card textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(63, 95, 110, 0.22);
  background: var(--white);
  color: var(--dark);
  font: inherit;
  outline: none;
}

.customer-info-card textarea {
  min-height: 120px;
  resize: vertical;
}

.customer-info-card input:focus,
.customer-info-card textarea:focus {
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 4px rgba(63, 95, 110, 0.12);
}

.order-category label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--dark);
  border-bottom: 1px dashed rgba(37, 50, 58, 0.14);
  line-height: 1.5;
  cursor: pointer;
}

.order-category label:last-child {
  border-bottom: none;
}

.order-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--deep-blue);
  cursor: pointer;
}

.order-category label:hover {
  color: var(--deep-blue);
}

.submit-order-card {
  grid-column: span 2;
  text-align: center;
  background: linear-gradient(135deg, #dbe7ec, #fffaf4);
}

.submit-order-card p {
  color: #51636d;
  line-height: 1.7;
  margin-bottom: 22px;
}

.submit-order-card button {
  border: none;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 850px) {
  .order-builder {
    grid-template-columns: 1fr;
  }

  .customer-info-card,
  .submit-order-card {
    grid-column: span 1;
  }
}

.order-hero {
  padding-bottom: 18px;
}

.start-order-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.start-order-btn {
  font-size: 1rem;
  padding: 15px 30px;
}

.bottom-order-button {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.order-builder-section {
  padding: 44px 0 60px;
}

.order-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.order-builder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.customer-info-card,
.order-category,
.submit-order-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 153, 166, 0.12);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.customer-info-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #fffaf4, #e9dcc8);
}

.customer-info-card h3,
.order-category h3,
.submit-order-card h3 {
  margin: 0 0 18px;
  color: var(--deep-blue);
  font-size: 1.45rem;
}

.customer-info-card label {
  display: block;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.customer-info-card input,
.customer-info-card textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(63, 95, 110, 0.22);
  background: var(--white);
  color: var(--dark);
  font: inherit;
  outline: none;
}

.customer-info-card textarea {
  min-height: 120px;
  resize: vertical;
}

.customer-info-card input:focus,
.customer-info-card textarea:focus {
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 4px rgba(63, 95, 110, 0.12);
}

.order-category label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--dark);
  border-bottom: 1px dashed rgba(37, 50, 58, 0.14);
  line-height: 1.5;
  cursor: pointer;
}

.order-category label:last-child {
  border-bottom: none;
}

.order-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--deep-blue);
  cursor: pointer;
}

.order-category label:hover {
  color: var(--deep-blue);
}

.submit-order-card {
  grid-column: span 2;
  text-align: center;
  background: linear-gradient(135deg, #dbe7ec, #fffaf4);
}

.submit-order-card p {
  color: #51636d;
  line-height: 1.7;
  margin-bottom: 22px;
}

.submit-order-card button {
  border: none;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 850px) {
  .order-builder {
    grid-template-columns: 1fr;
  }

  .customer-info-card,
  .submit-order-card {
    grid-column: span 1;
  }
}

.gallery-photo-card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125, 153, 166, 0.1);
  transition: 0.2s ease;
}

.gallery-photo-card:hover {
  transform: translateY(-4px);
}

.gallery-photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery-caption {
  padding: 18px;
}

.gallery-caption h3 {
  margin: 0 0 8px;
  color: var(--deep-blue);
  font-size: 1.15rem;
}

.gallery-caption p {
  margin: 0;
  color: #5c6b73;
  line-height: 1.6;
  font-size: 0.95rem;
}