/* ============================================
   A Taste of Tricie's — Custom Styles
   Classic & Elegant · Terracotta + Sand
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #FDF8EF;
  color: #3D2612;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #3D2612;
  margin-bottom: 1.25rem;
}

.section-title--light {
  color: #FDF8EF;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--terracotta {
  background-color: #B85C38;
  color: #FDF8EF;
  border-color: #B85C38;
}

.btn--terracotta:hover {
  background-color: #9a482c;
  border-color: #9a482c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 92, 56, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: #FDF8EF;
  border-color: rgba(253, 248, 239, 0.5);
}

.btn--outline:hover {
  background-color: rgba(253, 248, 239, 0.1);
  border-color: #FDF8EF;
  transform: translateY(-2px);
}

.btn--dark {
  background-color: #3D2612;
  color: #FDF8EF;
  border-color: #3D2612;
}

.btn--dark:hover {
  background-color: #5a3518;
  border-color: #5a3518;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 38, 18, 0.3);
}

.btn--full {
  width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(61, 38, 18, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #B85C38;
  color: #FDF8EF;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__logo-mark--footer {
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3D2612;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #7D3B26;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #B85C38;
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: #B85C38;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background-color: #B85C38;
  color: #FDF8EF;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background-color: #9a482c;
  color: #FDF8EF;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3D2612;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(253, 248, 239, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #3D2612;
  transition: color 0.25s ease;
}

.mobile-menu__link:hover {
  color: #B85C38;
}

.mobile-menu__link--cta {
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: #B85C38;
  color: #FDF8EF;
  padding: 0.75rem 2rem;
  border-radius: 6px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: 72px;
  overflow: hidden;
}

.hero__split {
  display: flex;
  align-items: center;
  min-height: 0;
}

.hero__split--left {
  background: linear-gradient(135deg, #3D2612 0%, #5a3518 50%, #7D3B26 100%);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero__split--left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__split--left::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 168, 82, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero__eyebrow {
  color: #E8B8A4;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #FDF8EF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: #E8B8A4;
}

.hero__subhead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(253, 248, 239, 0.75);
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__split--right {
  position: relative;
  overflow: hidden;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3D2612 0%, transparent 35%);
  pointer-events: none;
}

/* Decorative line in hero */
.hero__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #B85C38, #E4A852);
  margin-bottom: 1.5rem;
}

/* ---------- About ---------- */
.about {
  padding: 7rem 0;
  background-color: #FDF8EF;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(61, 38, 18, 0.12);
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #7D3B26;
  margin-bottom: 1.25rem;
}

.about__highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FAEDE D;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(184, 92, 56, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 92, 56, 0.1);
}

.highlight-card__icon {
  color: #B85C38;
  flex-shrink: 0;
}

.highlight-card__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3D2612;
}

/* ---------- Menu ---------- */
.menu {
  padding: 7rem 0;
  background: linear-gradient(180deg, #3D2612 0%, #5a3518 100%);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 168, 82, 0.3), transparent);
}

.menu__header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu__header .section-eyebrow {
  color: #E8B8A4;
}

.menu__header .section-title {
  color: #FDF8EF;
}

.menu__subtitle {
  font-size: 1.1rem;
  color: rgba(253, 248, 239, 0.6);
  max-width: 480px;
  margin: 0 auto;
}

.menu__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu__category {
  background: rgba(253, 248, 239, 0.05);
  border: 1px solid rgba(253, 248, 239, 0.08);
  border-radius: 16px;
  padding: 2.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu__category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.menu__category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(253, 248, 239, 0.08);
}

.menu__category-icon {
  color: #E8B8A4;
  flex-shrink: 0;
}

.menu__category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #FDF8EF;
}

.menu__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.menu__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu__item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #FDF8EF;
}

.menu__item-desc {
  font-size: 0.85rem;
  color: rgba(253, 248, 239, 0.5);
  line-height: 1.5;
}

.menu__note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(253, 248, 239, 0.4);
  margin-top: 3rem;
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 7rem 0;
  background-color: #FDF8EF;
}

.gallery__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 38, 18, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #FDF8EF;
}

.gallery__item--wide {
  grid-column: span 7;
}

.gallery__item:nth-child(2) {
  grid-column: span 5;
}

.gallery__item:nth-child(3) {
  grid-column: span 5;
}

.gallery__item:nth-child(4) {
  grid-column: span 4;
}

.gallery__item:nth-child(5) {
  grid-column: span 4;
}

/* ---------- Visit ---------- */
.visit {
  padding: 7rem 0;
  background-color: #FAEDE D;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.visit__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit__detail-icon {
  color: #B85C38;
  flex-shrink: 0;
  margin-top: 2px;
}

.visit__detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 0.25rem;
}

.visit__detail-value {
  font-size: 1rem;
  color: #3D2612;
  line-height: 1.6;
}

.visit__detail-value a {
  color: #7D3B26;
  transition: color 0.25s ease;
}

.visit__detail-value a:hover {
  color: #B85C38;
}

.visit__hours {
  background: #3D2612;
  border-radius: 16px;
  padding: 2.5rem;
}

.visit__hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FDF8EF;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(253, 248, 239, 0.1);
}

.visit__hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.visit__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(253, 248, 239, 0.05);
}

.visit__hours-day {
  font-size: 0.95rem;
  color: rgba(253, 248, 239, 0.7);
}

.visit__hours-time {
  font-size: 0.95rem;
  color: #FDF8EF;
  font-weight: 500;
}

.visit__hours-row--featured .visit__hours-day {
  color: #E8B8A4;
  font-weight: 500;
}

.visit__hours-row--featured .visit__hours-time {
  color: #E4A852;
}

/* ---------- Contact ---------- */
.contact {
  padding: 7rem 0;
  background: linear-gradient(135deg, #3D2612 0%, #5a3518 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 168, 82, 0.3), transparent);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(253, 248, 239, 0.65);
  margin-top: 1rem;
}

.contact__form {
  background: rgba(253, 248, 239, 0.06);
  border: 1px solid rgba(253, 248, 239, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__field--full {
  margin-bottom: 1.25rem;
}

.contact__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8B8A4;
}

.contact__input {
  background: rgba(253, 248, 239, 0.07);
  border: 1px solid rgba(253, 248, 239, 0.15);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: #FDF8EF;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
  width: 100%;
}

.contact__input::placeholder {
  color: rgba(253, 248, 239, 0.3);
}

.contact__input:focus {
  border-color: #B85C38;
  background: rgba(253, 248, 239, 0.1);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__success {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #E4A852;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact__success.is-visible {
  opacity: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: #1a0f08;
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 248, 239, 0.07);
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FDF8EF;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(253, 248, 239, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(253, 248, 239, 0.55);
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: #E8B8A4;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact p {
  font-size: 0.9rem;
  color: rgba(253, 248, 239, 0.45);
  line-height: 1.6;
}

.footer__contact a {
  color: rgba(253, 248, 239, 0.45);
  transition: color 0.25s ease;
}

.footer__contact a:hover {
  color: #E8B8A4;
}

.footer__bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(253, 248, 239, 0.25);
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__split--left {
    padding: 4rem 2rem;
    min-height: auto;
  }

  .hero__split--right {
    min-height: 400px;
  }

  .hero__image-wrapper {
    min-height: 400px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image {
    height: 400px;
  }

  .menu__categories {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item:nth-child(n+2) {
    grid-column: span 1;
  }

  .visit__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__split--left {
    padding: 3rem 1.5rem;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__subhead {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about {
    padding: 4rem 0;
  }

  .about__highlights {
    flex-direction: column;
  }

  .menu {
    padding: 4rem 0;
  }

  .menu__category {
    padding: 1.75rem;
  }

  .gallery {
    padding: 4rem 0;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .gallery__item:nth-child(n+2) {
    grid-column: span 1;
  }

  .visit {
    padding: 4rem 0;
  }

  .contact {
    padding: 4rem 0;
  }

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

  .contact__form {
    padding: 1.75rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero__split--left {
    padding: 2.5rem 1.25rem;
  }

  .hero__split--right {
    min-height: 300px;
  }

  .hero__image-wrapper {
    min-height: 300px;
  }
}
