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

/* Local fonts */
@font-face {
  font-family: 'Delius';
  src: url('/fonts/Delius-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delius Swash Caps';
  src: url('/fonts/DeliusSwashCaps-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dancing Script';
  src: url('/fonts/DancingScript-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;  /* because it's a variable font, covers all weights */
  font-style: normal;
  font-display: swap;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Delius', sans-serif;
  background: linear-gradient(145deg, #fff0f5, #fffaf0);
  color: #4b2e2e;
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #e07a5f;
}
.header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Delius Swash Caps', cursive;
  font-weight: normal;
  text-decoration: none;
  color: #4b2e2e;
  transition: color 0.3s;
  padding: 0.55rem 0;
  animation: menu-fade 0.25s ease forwards;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #e07a5f;
  transition: 0.3s;
}

.desktop-nav a:hover {
  color: #e07a5f;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Mobile Nav */
.menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #4b2e2e;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: none;
}

/* Hero */
.hero {
  width: 100%;
  text-align: center;
  padding: 6.5rem 2rem 4rem;
  background: linear-gradient(135deg, #ffe8ec, #fff9f3);
  color: #6a4e42;
  box-sizing: border-box;
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta {
  -webkit-tap-highlight-color: transparent;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(to right, #e07a5f, #f4a892);
  background-size: 200%;
  background-position: left;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.4s ease;
  font-family: 'Delius', sans-serif;
  box-shadow: 0 4px 10px rgba(224, 122, 95, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta:hover {
  background-position: right;
  box-shadow: 0 6px 12px rgba(224, 122, 95, 0.5);
  transform: translateY(-2px);
}
.cta:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(224, 122, 95, 0.2);
}

/* Carousel */
.carousel-container {
  
  position: relative;
  overflow: hidden;
  
  
  contain: layout style; /* enable layout and style containment*/
  width: 100%;
  
}

.carousel-fade-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 10;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%);

    background: linear-gradient(to right,
    rgba(255, 240, 245, 1) 0%,    /* match #fff0f5 */
    rgba(255, 240, 245, 0) 10%,
    rgba(255, 250, 240, 0) 90%,
    rgba(255, 250, 240, 1) 100%   /* match #fffaf0 */
  );

}

.carousel-track {
  
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  z-index: 1;
}

.carousel-track img {
  flex-shrink: 0;
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  min-width: 250px;
  min-height: 1px;
}

.carousel-items {
  display: flex;
}

/* Parallax Section */
.parallax-section {
  width: 100%;
  position: relative;
  margin-top: 4rem;
}

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

.parallax-section .overlap-content {
margin-top: -100px;
}

.overlap-content {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3rem 2rem;

  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.overlap-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #b85c38;
}

.overlap-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #5c4033;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 80px;
    transition: max-height 0.25s ease;
    overflow: hidden;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header {
    width: 100%;
  }

  .hero {
    padding: 6.5rem 1rem 3rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.85rem;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta {
    font-size: 0.95rem;
  }

  .overlap-content {
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
}

.header.expanded {
  max-height: 375px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: clip;
  will-change: transform;
}

@media (min-width: 769px) {
  .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-height: none;
    overflow: visible;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .mobile-nav {
    display: none;
  }
}
.cake-slice {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.cake-slice .layer {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #e07a5f;
  transition: background 0.3s ease, transform 0.4s ease, opacity 0.3s ease;
}

.cake-slice .layer1 {
  background: #f5c0aa; /* light cake top */
}

.cake-slice .layer2 {
  background: #e07a5f; /* frosting */
}

.cake-slice .layer3 {
  background: #b85c38; /* rich base */
}

.menu-button.open .cake-slice .layer1 {
  transform: rotate(45deg) translate(5px, 5px);
  background: #b85c38;
}

.menu-button.open .cake-slice .layer2 {
  opacity: 0;
}

.menu-button.open .cake-slice .layer3 {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #f5c0aa;
}

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

/* Contact Us Section */
.contact-section h2,
.contact-section .contact-title {
  font-family: 'Delius Swash Caps', cursive;
  font-weight: normal;
}

.masonry-gallery {
  column-count: 2;
  column-gap: 1rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-gallery img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.masonry-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 769px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 480px) {
.masonry-gallery {
    column-count: 1;
  }

  /* Removed 3D carousel and soft reflection effects */
}
/* Remove hero's background so it blends with the body gradient */
.hero {
  background: transparent !important;
  box-shadow: none !important; /* in case it had a shadow */
  border: none !important;     /* in case it had a border */
}

/* Global background only on html */
html, body { height: 100%; margin: 0; }
html {
  /* Smooth multi-stop gradient to avoid banding lines */
  background:
    linear-gradient(
      180deg,
      #fff6f7 0%,
      #fff3f4 35%,
      #fef0f2 65%,
      #fde8ea 100%
    );
  background-attachment: scroll; /* avoid fixed-scroll seams */
}
/* About page layout */
.about-intro {
  padding: 100px 20px 24px;
  text-align: center;
  background: transparent ;
}

.about-intro__inner {
  max-width: 980px;
  margin: 0 auto;
}



/* Portfolio section with 3 alternating parts */
.about-portfolio {
  max-width: 1000px;
  margin: 24px auto 80px;
  padding: 0px 10px;
}



.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin: 36px 0px;
  background: transparent;

}

.feature__media img {
  width: 80%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}


/* On wider screens, show two columns and alternate order */
@media (min-width: 900px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  /* This reverses the middle block so it becomes text + image */
  .feature.feature--alt .feature__media { order: 2; }
  .feature.feature--alt .feature__content { order: 1; }
}



/* Mobile refinements for About page images */
@media (max-width: 768px) {
  .feature__media {
    display: flex;
    justify-content: center; /* center the image horizontally */
  }

  .feature__media img {
    width: 90%;             /* shrink image a bit */
    max-width: 360px;       /* optional: don't let it exceed this width */
    border-radius: 16px;
  }

  .feature__content {
    text-align: center;     /* center-align text for better flow */
    padding: 0 1rem;
  }
}

/* Testimonials */
.testimonials {
  padding: 48px 20px 24px;
}
.testimonials__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__title {
  font-family: "Delius Swash Caps", cursive;
  font-weight: normal;
  font-size: clamp(22px, 3.2vw, 32px);
  color: #4b2f28;
  margin-bottom: 20px;
}

.t-slider {
  position: relative;
  min-height: 150px; /* reserve height to avoid layout shift */
}
.t-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease, transform 600ms ease;
  padding: 12px 8px;
}
.t-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.t-slide blockquote {
  font-family: "Delius", sans-serif;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.6;
  color: #5f4339;
  margin: 0 0 8px 0;
}
.t-slide figcaption {
  font-family: "Delius", sans-serif;
  color: #b85c38;
}

.t-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.t-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; background: rgba(184,92,56,.35); cursor: pointer;
}
.t-dots button[aria-current="true"] { background: #b85c38; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .t-slide, .t-slide.is-active { transition: none; }
}

/* Menu Page */
.menu-section {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 0 20px;
}

.menu-category {
  padding: 24px 20px;
  text-align: left;
}

.menu-category h2 {
  font-family: "Delius Swash Caps", cursive;
  font-size: 1.8rem;
  color: #b85c38;
  margin-bottom: 12px;
  text-align: center;
}

.menu-category ul {
  list-style: none;
  padding-left: 0;
}

.menu-category li {
  font-size: 1.1rem;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  color: #4b2e2e;
}

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

.menu-cta {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.menu-cta h2 {
  font-family: "Delius Swash Caps", cursive;
  color: #b85c38;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.menu-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Menu Page Hero */
.menu-hero {
  padding: 120px 20px 40px; /* reduce top/bottom space */
  text-align: center;
}

.menu-hero .overlap-content {
  margin-top: 0;         /* remove the negative overlap */
  max-width: 700px;
  padding: 2rem 1.5rem;
}

.menu-hero h1 {
  font-family: "Delius Swash Caps", cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #b85c38;
}

.menu-hero p {
  font-size: 1.1rem;
  color: #4b2e2e;
}

/* Order page */
.order-hero .overlap-content { margin-top: 0; max-width: 760px; padding: 2rem 1.5rem; }
.order-title { font-family: "Delius Swash Caps", cursive; color: #b85c38; font-size: 2rem; }

.order-grid {
  max-width: 1200px;
  margin: 28px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  row-gap: 36px;
}
.order-card {
  margin: 0;                /* ensure no inherited negative margins */
  padding: 24px 20px;
}

.order-hero { padding: 110px 20px 20px; }
.order-h2 {
  font-family: "Delius Swash Caps", cursive;
  font-weight: normal;
  color: #4b2f28;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.fields-1, .fields-2, .fields-3 { display: grid; gap: 12px; margin-bottom: 10px; }
.fields-2 { grid-template-columns: 1fr 1fr; }
.fields-3 { grid-template-columns: 1fr 1fr 1fr; }

.order-card label { display: grid; gap: 6px; font-size: 0.95rem; color: #4b2e2e; }
.order-card input[type="text"],
.order-card input[type="email"],
.order-card input[type="tel"],
.order-card input[type="number"],
.order-card input[type="date"],
.order-card select,
.order-card textarea {
  width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8); outline: none;
}
 
.check-row { display: flex; gap: 16px; flex-wrap: wrap; }

.product-block { margin-top: 10px; }
.order-summary { text-align: left; }
.estimate-breakdown { font-size: 0.95rem; color: #5f4339; margin-bottom: 10px; }
.estimate-total { display: flex; align-items: center; justify-content: space-between; font-size: 1.15rem; margin: 6px 0 16px; }
.tiny-note { font-size: .85rem; opacity: .8; margin-top: 8px; }

/* Responsive */
@media (min-width: 980px) {
  .order-grid { grid-template-columns: 1fr 1fr; }
  .order-summary { grid-column: span 2; }
}
@media (max-width: 768px) {
  .fields-2, .fields-3 { grid-template-columns: 1fr; }
  .order-card { padding: 18px 14px; }
}
/* Order additions */
.order-card textarea { min-height: 96px; }               /* comfy 3 lines */
.order-card label textarea,
.order-card label input[type="text"] { background: rgba(255,255,255,.85); }

@media (max-width: 768px) {
  .order-card textarea { min-height: 90px; }
}

/* ---- Order page unified centering (mobile + desktop) ---- */
:root{
  --wrap: 980px;   /* page max width for cards */
  --gutter: 16px;  /* side padding on small screens */
}

/* Center these sections exactly the same */
.order-hero,
.order-grid,
.order-summary {
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  box-sizing: border-box;
}

/* Ensure grid children don't hug the left edge */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* your two columns on wide screens */
  gap: 28px 24px;
  justify-items: stretch;           /* children fill available width */
}

/* Phone: single column and still centered */
@media (max-width: 768px) {
  .order-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Make each card fill the grid column and be centered */
.order-card {
  width: 100%;
  margin: 0;                        /* remove any stray left margins */
}
/* Unify all controls inside order cards */
.order-card input[type="text"],
.order-card input[type="email"],
.order-card input[type="tel"],
.order-card input[type="number"],
.order-card input[type="date"],
.order-card select,
.order-card textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font: inherit;                 /* same family/size */
  font-size: 16px;               /* prevent iOS zoom */
  padding: 12px 14px;
  border: 1px solid #e6dcd7;
  border-radius: 14px;
  background: #fff;
  outline: none;
}

/* Make the date field match (iOS/Safari fixes) */
.order-card input[type="date"]{
  -webkit-appearance: none;
  appearance: none;
  height: 46px;                  /* same height as others */
  padding-right: 40px;           /* room for picker icon */
}

/* Remove odd inner padding on WebKit */
.order-card input[type="date"]::-webkit-datetime-edit{
  padding: 0;
}

/* Tidy the calendar icon */
.order-card input[type="date"]::-webkit-calendar-picker-indicator{
  opacity: .6;
  margin-right: 6px;
}

/* If the field ever overflows its card on small screens */
@media (max-width: 768px){
  .order-card input[type="date"]{ max-width: 100%; }
}

/* Center dietary options */
.dietary-options {
  display: flex;
  justify-content: center;   /* center horizontally */
  gap: 1.5rem;               /* space between each option */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;           /* if screen is narrow, wrap to next line */
}

.dietary-options label {
  display: flex;
  flex-direction: column;
  align-items: center;       /* checkbox + text aligned */
  font-size: 0.9rem;
  color: #4b2e2e;
}

.dietary-options input[type="checkbox"] {
  margin-bottom: 0.25rem;    /* space between box and text */
}

/* Style file input */
input[type="file"] {
  display: block;
  margin: 0.75rem auto;      /* center horizontally */
  padding: 0.6rem 1rem;
  border: 1px solid #e0cfcf;
  border-radius: 12px;
  background: #fff;
  font-family: 'Delius', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  width: 90%;                /* match other inputs */
  max-width: 320px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(to right, #e07a5f, #f4a892);
  border: none;
  border-radius: 8px;
  color: white;
  padding: 0.4rem 1rem;
  cursor: pointer;
  font-family: 'Delius', sans-serif;
}

/* Center estimate heading */
.estimate h2 {
  text-align: center;
  margin-bottom: 1rem;
}

/* Center the button */
.estimate button {
  display: block;
  margin: 1rem auto;
}

/* Justify the note text */
.estimate p.note {
  text-align: justify;
  font-size: 0.9rem;
  color: #5c4033;
  line-height: 1.5;
  max-width: 90%;
  margin: 0 auto;  /* keep it neatly contained */
}

/* Make file upload match other fields */
.order-card input[type="file"] {
  display: block;
  width: 100%;              /* take full width of the card */
  padding: 0.75rem 1rem;    /* same padding as inputs */
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  color: #4b2e2e;
  cursor: pointer;
  box-sizing: border-box;
}

/* ----- Flavour & Dietary (desktop tidy, mobile unchanged) ----- */

/* default/mobile */
.flavour-card .fields-2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 18px;
}
.flavour-card .fields-2 > label{ display:block; min-width:0; }
.flavour-card select,
.flavour-card input[type="text"]{ width:100%; max-width:100%; box-sizing:border-box; }

/* dietary row */
.flavour-card .dietary-options{
  display:flex;
  gap: 1.25rem;
  align-items:center;
  justify-content:center;   /* centered on mobile */
  flex-wrap: wrap;
}
.flavour-card .dietary-options label{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin:0;                 /* kill default label margin differences */
}

/* desktop ≥900px: two columns; bottom-align so rows line up */
@media (min-width:900px){
  .flavour-card .fields-2{
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    align-items: end;       /* lines up Primary select with dietary row */
  }
  .flavour-card .dietary-options{
    justify-content:flex-start;  /* left aligned on desktop */
    flex-wrap: nowrap;
  }
}
/* Desktop fix: align top of both columns */
@media (min-width: 900px) {
  .flavour-card .flavour-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;   /* align to the top, not baseline */
  }
  .flavour-card .field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .flavour-card .dietary-options {
    margin-top: 8px; /* add small gap under "Dietary Options" label */
  }
}

/* Contact page layout */
.contact-grid {
  max-width: 1100px;
  margin: 24px auto 80px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-card { text-align: left; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Contact elements */
.contact-title {
  font-family: 'Delius Swash Caps', cursive;
  font-weight: normal;
  margin-bottom: 8px;
}

.contact-list,
.contact-hours {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.contact-list a,
.social-links a {
  text-decoration: none;
  color: #b85c38;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Social pills */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.social-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

/* FAQs (always expanded) */
.contact-faq { max-width: 900px; margin: 0 auto 80px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255,255,255,0.4);
}
.faq-item h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: #4b2e2e;
}
.faq-item p {
  margin: 0;
  color: #5f4339;
  line-height: 1.6;
}
/* Scroll reveal animations */
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right {
    transition: none;
    transform: none;
    opacity: 1;
  }
}