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

:root {
  --bg: #111111;
  --panel: rgba(26, 26, 26, 0.68);
  --text: #f5efe4;
  --muted: #ddd3c1;
  --accent: #d8c7a6;
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 12px;
}

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

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

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

/* HEADER */
.site-header {
  position: sticky;
  top: 10px;
  z-index: 999;
  width: min(92%, 1200px);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(18,18,18,0.78), rgba(18,18,18,0.46));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.02) 45%,
    rgba(255,255,255,0.01)
  );
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  pointer-events: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  gap: 24px;
  min-height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.logo a {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 170px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  position: relative;
  z-index: 2;
}

.nav-links a {
  color: rgba(245, 239, 228, 0.94);
  font-size: 13px;
  transition: 0.25s ease;
  text-shadow: 0 1px 1px rgba(0,0,0,0.18);
}

.nav-links a:hover {
  color: #ffffff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: #111111;
  border-radius: 999px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(216, 199, 166, 0.22);
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(216, 199, 166, 0.75);
  color: var(--text);
  border-radius: 999px;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  padding: 58px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(216, 199, 166, 0.08), transparent 28%),
    linear-gradient(to bottom, #111111, #1b1b1b);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216, 199, 166, 0.08);
  border: 1px solid rgba(216, 199, 166, 0.18);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-text h1 {
  font-size: 54px;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 640px;
}

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

.hero-media {
  position: relative;
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  background: #151515;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.14) 50%,
    rgba(0,0,0,0.08)
  );
}

.hero-card-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(10, 10, 10, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 22px;
  border-radius: 18px;
}

.hero-card-text h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.hero-card-text p {
  color: rgba(245, 239, 228, 0.84);
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section-cream {
  background: #f5efe4;
  color: #111111;
}

.section-title {
  font-size: 40px;
  margin-bottom: 14px;
}

.section-subtext {
  max-width: 760px;
  color: rgba(245, 239, 228, 0.78);
  margin-bottom: 36px;
}

.section-cream .section-subtext {
  color: rgba(17, 17, 17, 0.75);
}

/* GRIDS */
.about-grid,
.services-grid,
.recipes-grid,
.gallery-grid,
.testimonials-grid,
.signature-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
}

.signature-grid,
.services-grid,
.recipes-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

/* CARDS */
.card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.section-cream .card {
  background: #fffdf9;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.signature-grid .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-image.tall {
  height: 260px;
}

.card-content {
  padding: 22px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-cream .tag {
  color: #8a7450;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.28;
}

.card p {
  color: rgba(245, 239, 228, 0.75);
  font-size: 15px;
}

.section-cream .card p {
  color: rgba(17, 17, 17, 0.72);
}

/* NEWSLETTER */
.newsletter-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.newsletter-form input,
/* CONTACT */
/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  color: rgba(245, 239, 228, 0.7);
  font-size: 14px;
}


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.footer-content a,
.footer-content a:hover,
/* TABLET */
@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .signature-grid,
  .services-grid,
  .recipes-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero-text {
    order: 2;
  }

  .hero-media {
    order: 1;
    min-height: 340px;
    max-width: 100%;
  }

  .hero-video {
    min-height: 340px;
  }

  .hero-text h1 {
    font-size: 42px;
    max-width: 14ch;
  }

  .hero-text p {
    max-width: 100%;
  }

  .navbar {
    gap: 18px;
    padding: 10px 18px;
    min-height: 62px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .contact-info,
  }

/* MOBILE */
@media (max-width: 768px) {
  body {
    padding-top: 10px;
  }

  .container {
    width: min(92%, 100%);
  }

  .site-header {
    top: 8px;
    border-radius: 16px;
    width: calc(100% - 24px);
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    min-height: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .hero {
    padding: 34px 0 44px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-text {
    order: 2;
  }

  .hero-media {
    order: 1;
    min-height: 250px;
    border-radius: 24px;
  }

  .hero-video {
    min-height: 250px;
  }

  .hero-card-text {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-card-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .hero-card-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    padding: 6px 11px;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 16px;
    max-width: 10ch;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 100%;
  }

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

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .section-subtext,
  .about-grid,
  .signature-grid,
  .services-grid,
  .recipes-grid,
  .gallery-grid,
  .testimonials-grid,
  .card-content {
    padding: 18px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-details p,
  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}


.about-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-card-body {
  flex: 1;
}

.read-more-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(216, 199, 166, 0.35);
  background: rgba(216, 199, 166, 0.08);
  color: #d8c7a6;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.read-more-btn:hover {
  background: rgba(216, 199, 166, 0.16);
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-card-content {
    min-height: auto;
  }

  .about-card-content h3 {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 12px;
    max-width: 9ch;
  }

  .about-card-body {
    max-height: 220px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
  }

  .about-card-content.expanded .about-card-body {
    max-height: 1200px;
  }

  .about-card-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(26,26,26,0), rgba(26,26,26,1));
    pointer-events: none;
  }

  .section-cream .about-card-body::after {
    background: linear-gradient(to bottom, rgba(255,253,249,0), rgba(255,253,249,1));
  }

  .about-card-content.expanded .about-card-body::after {
    display: none;
  }

  .read-more-btn {
    display: inline-flex;
  }
}


/* HIDE GALLERY FOR NOW */
#gallery {
  display: none !important;
}

/* HERO TITLE BALANCE */
.hero-text h1 {
  text-wrap: balance;
}

.hero-text p {
  text-wrap: pretty;
}

/* PREMIUM CONTACT SECTION */
.contact-subtext {
  max-width: 760px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
  margin-top: 8px;
}

.contact-info {
  max-width: 500px;
}

.contact-info-card {
  padding: 8px 0;
}

.contact-info-card h3 {
  font-size: 34px;
  line-height: 1.12;
  margin: 10px 0 14px;
  color: #f5efe4;
}

.contact-intro {
  max-width: 460px;
  color: rgba(245, 239, 228, 0.74);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-details p {
  margin-bottom: 14px;
  color: rgba(245, 239, 228, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.contact-details strong {
  color: #ffffff;
}

.contact-details a {
  color: #d8c7a6;
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-details a:hover {
  color: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
  justify-self: end;
  background: linear-gradient(180deg, rgba(24,24,24,0.98), rgba(16,16,16,0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  background: #0c0c0c;
  color: #f5efe4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 0 0 16px 0;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 239, 228, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 199, 166, 0.6);
  box-shadow: 0 0 0 3px rgba(216, 199, 166, 0.08);
}

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

.contact-form .btn {
  width: auto;
  min-width: 180px;
  margin-top: 6px;
  align-self: flex-start;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  color: #d8c7a6;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-content a:hover {
  color: #ffffff;
}

/* TABLET */
@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .services-grid,
  .recipes-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    padding: 44px 0 56px;
  }

  .hero-text {
    order: 2;
  }

  .hero-media {
    order: 1;
    min-height: 340px;
    max-width: 100%;
  }

  .hero-video {
    min-height: 340px;
  }

  .hero-text h1 {
    font-size: 42px;
    max-width: 13ch;
  }

  .hero-text p {
    max-width: 100%;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
    justify-self: stretch;
  }

  .contact-form {
    padding: 26px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  body {
    padding-top: 10px;
  }

  .container {
    width: min(92%, 100%);
  }

  .site-header {
    top: 8px;
    border-radius: 16px;
    width: calc(100% - 24px);
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    min-height: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .hero {
    padding: 34px 0 44px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-text {
    order: 2;
  }

  .hero-media {
    order: 1;
    min-height: 250px;
    border-radius: 24px;
  }

  .hero-video {
    min-height: 250px;
  }

  .hero-card-text {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-card-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .hero-card-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    padding: 6px 11px;
  }

  .hero-text h1 {
    font-size: 31px;
    line-height: 1.08;
    margin-bottom: 16px;
    max-width: 11ch;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 25ch;
  }

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

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-subtext,
  .contact-subtext {
    font-size: 15px;
    line-height: 1.8;
    max-width: 100%;
  }

  .about-grid,
  .signature-grid,
  .services-grid,
  .recipes-grid,
  .testimonials-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-content {
    padding: 18px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-info-card {
    padding: 0;
  }

  .contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-intro,
  .contact-details p {
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-form {
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
    font-size: 15px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .contact-form textarea {
    min-height: 180px;
  }

  .contact-form .btn {
    width: 100%;
    min-width: 100%;
    align-self: stretch;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}

