/* ============================================
   JULIANAS CAFFE — Stylesheet
   Colors: Midnight Blue (#0D1B2A) + Mint (#A8E6CF)
   Fonts: Playfair Display + Inter
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #FDF8F4;
  color: #0D1B2A;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Custom Properties ---------- */
:root {
  --midnight: #0D1B2A;
  --midnight-light: #1A2F45;
  --mint: #A8E6CF;
  --mint-light: #D4F5E5;
  --mint-dark: #7BC8A8;
  --cream: #FDF8F4;
  --cream-dark: #F5EDE6;
  --warm-gray: #6B7280;
  --warm-gray-light: #9CA3AF;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(13, 27, 42, 0.12);
  --shadow-xl: 0 30px 80px rgba(13, 27, 42, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: linear-gradient(135deg, var(--mint-light), rgba(168, 230, 207, 0.3));
  padding: 0.4em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85em 1.8em;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--midnight);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.25);
}

.btn--primary:hover {
  background: var(--midnight-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--midnight);
  border: 2px solid rgba(13, 27, 42, 0.2);
}

.btn--ghost:hover {
  border-color: var(--midnight);
  background: rgba(13, 27, 42, 0.04);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--mint);
  color: var(--midnight);
  font-weight: 600;
  padding: 0.65em 1.4em;
}

.btn--nav:hover {
  background: var(--mint-light);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1em 2em;
  font-size: 1rem;
}

/* ---------- Decorative Blobs ---------- */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.blob--mint {
  width: 600px;
  height: 600px;
  background: var(--mint);
  top: -200px;
  right: -200px;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob--blue {
  width: 500px;
  height: 500px;
  background: var(--midnight);
  opacity: 0.06;
  bottom: -100px;
  left: -150px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}

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

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--midnight);
}

.nav__logo-icon {
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__menu a {
  padding: 0.5em 1em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--midnight);
  border-radius: 100px;
  transition: all var(--transition);
}

.nav__menu a:not(.btn):hover {
  background: rgba(13, 27, 42, 0.06);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253, 248, 244, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__overlay.active {
  display: block;
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--midnight);
  background: rgba(168, 230, 207, 0.4);
  padding: 0.5em 1.2em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--midnight);
  margin-bottom: 1.5rem;
}

.hero__accent {
  font-style: italic;
  color: var(--mint-dark);
  position: relative;
}

.hero__accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--mint);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}

.hero__subheadline {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

.hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--midnight);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__image-stack {
  position: relative;
  height: 600px;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image--main {
  width: 380px;
  height: 500px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero__image--float {
  width: 280px;
  height: 200px;
  bottom: 80px;
  left: -20px;
  z-index: 3;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--cream);
}

.hero__image--accent {
  width: 220px;
  height: 160px;
  bottom: -10px;
  right: 40px;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.hero__float-card {
  position: absolute;
  top: 40px;
  left: 20px;
  z-index: 4;
  background: var(--midnight);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- About ---------- */
.about {
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.about__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-col {
  position: relative;
  height: 650px;
}

.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
  width: 85%;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--cream);
}

.about__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__text-col .section-title {
  margin-bottom: 1.5rem;
}

.about__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

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

.highlight-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint-light), rgba(168, 230, 207, 0.3));
  border-radius: var(--radius-sm);
}

.highlight-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--midnight);
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ---------- Menu ---------- */
.menu {
  padding: 8rem 2rem;
  background: var(--midnight);
  position: relative;
  z-index: 1;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  pointer-events: none;
}

.menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.menu__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.menu__header .section-label {
  background: rgba(168, 230, 207, 0.2);
  color: var(--mint);
}

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

.menu__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.menu__tab {
  padding: 0.6em 1.5em;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.menu__tab:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu__tab.active {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
  font-weight: 600;
}

.menu__panels {
  position: relative;
  min-height: 300px;
}

.menu__panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu__panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.menu__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 230, 207, 0.3);
  transform: translateY(-2px);
}

.menu__item-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.menu__item-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.menu__item-tag {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(168, 230, 207, 0.15);
  padding: 0.3em 0.8em;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 0.2rem;
}

.menu__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  text-align: center;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.gallery__container {
  max-width: 1280px;
  margin: 0 auto;
}

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

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

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery__item-overlay span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  font-style: italic;
}

.gallery__item--large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery__item--tall {
  grid-column: span 5;
  grid-row: span 2;
}

/* ---------- Visit ---------- */
.visit {
  padding: 8rem 2rem;
  background: var(--cream-dark);
  position: relative;
  z-index: 1;
}

.visit__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visit__content .section-title {
  margin-bottom: 1.25rem;
}

.visit__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.visit__detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.visit__detail h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.2rem;
}

.visit__detail p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.visit__detail a {
  color: var(--mint-dark);
  font-weight: 500;
  transition: color var(--transition);
}

.visit__detail a:hover {
  color: var(--midnight);
}

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

.visit__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 600px;
}

.visit__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact ---------- */
.contact {
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__text .section-title {
  margin-bottom: 1.25rem;
}

.contact__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--midnight);
  font-weight: 500;
}

.contact__info-item a {
  color: var(--midnight);
  transition: color var(--transition);
}

.contact__info-item a:hover {
  color: var(--mint-dark);
}

.contact__form-wrap {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form__input {
  width: 100%;
  padding: 0.85em 1.1em;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--midnight);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form__input::placeholder {
  color: var(--warm-gray-light);
}

.form__input:focus {
  border-color: var(--mint);
  background: #fff;
  box-shadow: 0 0 0 4px: rgba(168, 230, 207, 0.2);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

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

.form__success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(168, 230, 207, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--midnight);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--midnight);
  color: #fff;
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--mint);
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--mint);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__container {
    gap: 2rem;
  }

  .hero__image--main {
    width: 300px;
    height: 400px;
  }

  .hero__image--float {
    width: 220px;
    height: 160px;
  }

  .hero__image--accent {
    width: 180px;
    height: 130px;
  }

  .about__container,
  .visit__container,
  .contact__container {
    gap: 3rem;
  }

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

  .footer__top > :first-child {
    grid-column: span 2;
  }
}

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

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--cream);
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__menu a {
    font-size: 1.1rem;
    padding: 0.75em 1em;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image-stack {
    height: 350px;
    display: flex;
    justify-content: center;
  }

  .hero__image--main {
    width: 240px;
    height: 300px;
    position: relative;
    top: auto;
    right: auto;
  }

  .hero__image--float {
    width: 180px;
    height: 130px;
    position: absolute;
    bottom: 20px;
    left: 10px;
  }

  .hero__image--accent {
    width: 150px;
    height: 110px;
    position: absolute;
    bottom: 0;
    right: 10px;
  }

  .hero__float-card {
    top: 10px;
    left: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .hero__trust {
    gap: 1rem;
  }

  /* About mobile */
  .about {
    padding: 5rem 1.5rem;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image-col {
    height: 400px;
  }

  .about__image-wrap {
    height: 350px;
    width: 100%;
  }

  .about__image-accent {
    width: 50%;
  }

  /* Menu mobile */
  .menu {
    padding: 5rem 1.5rem;
  }

  .menu__tabs {
    gap: 0.4rem;
  }

  .menu__tab {
    padding: 0.5em 1em;
    font-size: 0.8rem;
  }

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

  /* Gallery mobile */
  .gallery {
    padding: 5rem 1.5rem;
  }

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

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Visit mobile */
  .visit {
    padding: 5rem 1.5rem;
  }

  .visit__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit__image-wrap {
    height: 350px;
    order: -1;
  }

  .visit__actions {
    flex-direction: column;
  }

  .visit__actions .btn {
    justify-content: center;
  }

  /* Contact mobile */
  .contact {
    padding: 5rem 1.5rem;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact__form-wrap {
    padding: 1.5rem;
  }

  /* Footer mobile */
  .footer {
    padding: 4rem 1.5rem 2rem;
  }

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

  .footer__top > :first-child {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__image-stack {
    height: 280px;
  }

  .hero__image--main {
    width: 200px;
    height: 250px;
  }

  .hero__image--float {
    width: 150px;
    height: 110px;
  }

  .hero__image--accent {
    width: 130px;
    height: 95px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--large,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item {
    height: 220px;
  }
}
