*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A3953;
  --navy-light: #234e73;
  --navy-dark: #0f2234;
  --gold: #c9a84c;
  --gold-light: #e8cc84;
  --cream: #f5f0e8;
  --text: #1a1a1a;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background-color: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0px;
}

.admin-badge {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

/* ── HEADER ── */
header {
  background-color: var(--navy);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 50%;
}

.header-left img {
  max-height: 70px;
  width: auto;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover { color: #fff; }
nav a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none !important; }

/* ── MAIN CONTENT ── */
main {
  flex: 1;
  display: block; 
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}



h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1.2rem;
}

h1 strong {
  font-weight: 600;
  display: block;
}

.tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 4rem;
  text-align: center;
}

.follow-us {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 1.2rem 4rem;
  background-color: #fdf6e3;
  width: 100%;
}

.follow-us span {
  font-size: 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
}

.fb-btn {
  background-color: #2d4a8a;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.6rem 1.1rem;
  border-radius: 15px;
  font-size: 1rem;
}

.fb-btn:hover {
  background-color: #1a3468;
}

/* ── MENU CARDS (Homepage Only Elements) ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  margin: 4rem auto; 
  padding: 0 2rem;
}

.menu-item {
  background: #fff;
  border: 1px solid #e2ddd5;
  border-radius: 4px;
  padding: 2.2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,57,83,0.12);
  border-color: transparent;
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.item-icon {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
  display: block;
}

.item-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.item-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* ── ENTRANCE ANIMATION ── */
.menu-item {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.5s forwards;
}
.menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-item:nth-child(3) { animation-delay: 0.25s; }
.menu-item:nth-child(4) { animation-delay: 0.35s; }
.menu-item:nth-child(5) { animation-delay: 0.45s; }
.menu-item:nth-child(6) { animation-delay: 0.55s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-text {
  opacity: 0;
  animation: fade 0.6s 0.1s forwards;
}

@keyframes fade {
  to { opacity: 1; }
}

/* ── PORTFOLIO PAGE GRID ── */
.portfolio-grid {
  display: grid;
  /* Changed minmax from 350px to 380px to make the individual cards globally bigger */
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem; /* Extra breathing room between larger elements */
  max-width: 1350px; /* Expanded grid container limit slightly for larger columns */
  margin: 4rem auto;
  padding: 0 2rem;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid #e2ddd5;
  border-radius: 4px;
  padding: 0.85rem;
  box-shadow: 0 4px 15px rgba(26, 57, 83, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* New layout block to present the titles cleanly ABOVE the image container */
.portfolio-card-header {
  padding: 0.25rem 0.25rem 0.75rem 0.25rem;
  text-align: left;
}

.portfolio-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 0.15rem 0;
  letter-spacing: 0.5px;
}

.portfolio-card-header .portfolio-cat {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  /* Set to 4/3 aspect ratio to perfectly replicate the dimension of your top row kitchen images */
  aspect-ratio: 4 / 3; 
  overflow: hidden;
  border-radius: 2px;
  background-color: #fcfbfa;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps everything filled uniformly to maintain identical dimensions */
  transition: transform 0.5s ease;
}

/* Elegant micro-zoom on image when the card is hovered */
.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.04);
}

.no-portfolio {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  grid-column: 1 / -1;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
}

/* ── TESTIMONIALS PAGE GRID ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1250px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2ddd5;
  border-radius: 4px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 15px rgba(26, 57, 83, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Stylized luxury quotation marks decoration */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.15);
  font-family: 'Cormorant Garamond', serif;
}

.testimonial-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-meta {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 1rem;
}

.client-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.project-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  display: block;
}

.no-testimonials {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  grid-column: 1 / -1;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 5rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  width: 100%;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr 3fr;
  gap: 3rem;
  align-items: start;
}

.footer-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.icon-wrapper {
  width: 95px;
  height: 95px;
  display: block;
}

.footer-icon {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.35);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.footer-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

/* ── ABOUT PAGE LAYOUT ── */
.about-page {
  width: 100%;
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  overflow: hidden;
  background-color: var(--navy-dark); 
}

.about-hero-bg, .bespoke-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) contrast(1.1); /* Darkened slightly more for extreme legibility */
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px; /* Widened to fit large prose comfortably */
  text-align: center;
  color: #ffffff;
}

.about-hero-content h1 {
  color: #ffffff !important;
  margin-bottom: 2.5rem;
}

/* Updated: Much larger text size for the top block */
.about-story-text {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.35rem; /* Scaled up from 1.1rem */
  line-height: 1.85;
  color: #ffffff; 
  letter-spacing: 0.01em;
}

.about-story-text p {
  margin-bottom: 1.8rem;
}

/* Updated: Scaled up lead paragraph */
.about-story-text p.lead-text {
  font-size: 1.6rem; /* Scaled up from 1.3rem */
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.6;
}

.services-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.services-group {
  margin-bottom: 5rem;
}

.services-group:last-of-type {
  margin-bottom: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.6rem;
  text-align: left;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 2px;
  background-color: var(--gold);
}

.services-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.services-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr); 
}

.services-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr); 
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2ddd5;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(26, 57, 83, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 57, 83, 0.08);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 0.5rem;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.2rem;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  top: -2px;
}

/* ── BESPOKE BANNER ── */
.bespoke-banner {
  position: relative;
  width: 100%;
  padding: 9rem 2rem; /* Enhanced spatial padding */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.bespoke-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #ffffff;
}

/* Updated: Much larger text size for Bespoke Feature Work heading */
.bespoke-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; /* Scaled up significantly from 3.2rem */
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

/* Updated: Scaled up Bespoke descriptive prose */
.bespoke-content p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.35rem; /* Scaled up from 1.15rem */
  font-weight: 300;
  line-height: 1.75;
  color: #ffffff;
}

/* ── ACCESSIBILITY / DISABILITIES NOTE (HIGH VISIBILITY REDESIGN) ── */
.accessibility-note {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem 2rem; /* Adjusted space around layout block */
}

/* Updated: High prominence box styling using deep navy backdrop to immediately catch the eye */
.note-box {
  background-color: var(--navy);       /* Distinct color change to isolate value and importance */
  border-left: 6px solid var(--gold);   /* Bold custom gold accent border line */
  padding: 3rem 3.5rem;                 /* Luxurious deep spacing */
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border-radius: 0 6px 6px 0;
  text-align: left;
  box-shadow: 0 10px 35px rgba(26, 57, 83, 0.15); /* Premium depth shadow layout */
}

.accessibility-icon {
  width: 48px;                          /* Big standout visibility graphic element */
  height: 48px;
  color: var(--gold-light);             /* Changed to gold light to shine bright against navy block */
  flex-shrink: 0;
}

/* Updated: Huge, beautiful text structure for disability notes */
.note-box p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.45rem;                   /* Significantly enlarged for clear noticeability */
  line-height: 1.75;
  color: #ffffff;                       /* Crisp white text against the dark container */
  margin: 0;
}

.note-box p strong {
  font-weight: 600;
  color: var(--gold-light);             /* Highlights title section inline cleanly */
  letter-spacing: 0.01em;
}


/* --- HOMEPAGE SLIDER CONTAINER --- */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;    
  height: 75vh;       
  margin: 0;          
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--navy-dark);
}

/* --- SLIDES WRAPPER --- */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease, visibility 0.7s;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

/* --- ACTIVE & SLIDING STATES --- */
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.slide.slide-next {
  transform: translateX(100%);
}

.slide.slide-prev {
  transform: translateX(-100%);
}

/* --- LEFT CORNER TEXT OVERLAY --- */
.slide-text {
  position: absolute;
  bottom: 50px;
  left: 0;                     
  width: 45%;                  /* Keeps the wider stretched layout */
  max-width: 650px;            
  background: rgba(20, 35, 54, 0.75); /* Changed opacity from 0.85 to 0.65 for more transparency */
  padding: 25px;               
  box-sizing: border-box;
}

/* Force all text inside the overlay box to be bold and slightly larger */
.slide-text, 
.slide-text p, 
.slide-text h2 {
  font-weight: 500 !important; /* Keeps the text in Bold */
  font-size: 1.1rem !important; /* Bumps the text size up slightly (adjust to 1.15rem if you want it even bigger) */
  line-height: 1.6;            /* Adds a tiny bit of vertical breathing room between lines for readability */
  letter-spacing: 1.5px;       
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

.slide-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

.slide-text p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 200;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

/* --- NAVIGATION ARROWS --- */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border: none;
  width: 55px;
  height: 55px;
  display: flex; 
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  user-select: none;
  z-index: 10;
}

.arrow:hover {
  background: var(--gold);
  color: #ffffff;
}

.arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.arrow-left { left: 30px; }
.arrow-right { right: 30px; }

/* Mobile Adaptations for Slider */
@media (max-width: 768px) {
  .slider-container {
    height: 55vh; 
  }
  .slide-text {
    left: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: none;
    padding: 1.5rem;
  }
  .slide-text h2 { font-size: 1.8rem; }
  .arrow { width: 45px; height: 45px; }
  .arrow-left { left: 15px; }
  .arrow-right { right: 15px; }
}


/* ── GLOBAL RESPONSIVENESS & ZOOM OPTIMIZATIONS ── */

/* Tablets / Medium Screens (Max-width: 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 0 1.5rem;
  }
  
  nav {
    gap: 1.2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .services-grid.cols-2, .services-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices / Extreme Zoom (Max-width: 768px) */
@media (max-width: 768px) {
  header {
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    height: auto; 
    min-height: unset;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .header-left {
    max-width: 100%;
    width: 100%;
    justify-content: center; 
    flex-wrap: wrap;
  }

  .header-left img {
    max-height: 45px; 
  }

  .logo {
    font-size: 1.3rem; 
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  nav {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; 
    width: 100%;
  }
  
  nav a {
    font-size: 0.75rem;
    letter-spacing: 0.12em; 
  }
  
  .services-grid.cols-2, .services-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  
  .about-hero { min-height: auto; padding: 4rem 1.5rem; }
  .bespoke-banner { padding: 4rem 1.5rem; }
  .bespoke-content h2 { font-size: 2.5rem; }
  .note-box { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
  .note-box p { font-size: 1.15rem; }
}



.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px; /* Increased from 950px to make the text span wider side-to-side */
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;   /* Safe buffer zone for smaller screens */
}

/* Small Mobile Screens (Max-width: 600px) */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; 
    gap: 2.5rem;
  }
  
  .icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .footer-logo-col {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   ── CONTACT PAGE LAYOUT & FORM ──
   ========================================================================== */

.contact-hero-title {
  padding: 3rem 2rem 1rem 2rem; 
  text-align: center;
}

.contact-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 2rem 6rem 2rem;
  width: 100%;
}

.contact-card {
  background: #ffffff; 
  border-radius: 4px; 
  border: 1px solid #e2ddd5; 
  padding: 3.5rem 3rem; 
  width: 100%;
  box-shadow: 0 4px 15px rgba(26, 57, 83, 0.03);
}

.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 0.5rem;
  text-align: left;
}

.contact-grid-2 { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.5rem; 
  margin-bottom: 1.5rem; 
}

.contact-field { 
  margin-bottom: 1.5rem; 
}

.contact-card label { 
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; 
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy); 
  display: block; 
  margin-bottom: 0.5rem; 
  font-weight: 600;
  text-align: left;
}

.contact-card label .req { 
  color: #c0392b; 
  margin-left: 2px;
}

.contact-card input, 
.contact-card textarea {
  width: 100%; 
  padding: 12px 14px; 
  font-size: 0.95rem; 
  font-family: 'Josefin Sans', sans-serif;
  border: 1px solid #e2ddd5; 
  border-radius: 2px; 
  background: #faf9f6; 
  color: var(--text);
  transition: border-color 0.2s, background-color 0.2s;
}

.contact-card input:focus, 
.contact-card textarea:focus { 
  outline: none; 
  border-color: var(--gold); 
  background: #ffffff;
}

.contact-card textarea { 
  resize: vertical; 
}

.contact-card .char-row { 
  display: flex; 
  justify-content: flex-end; 
  margin-top: 4px; 
}

.contact-card .char-count { 
  font-size: 11px; 
  color: #999; 
}

.contact-card .err { 
  font-size: 12px; 
  color: #c0392b; 
  display: none; 
  margin-top: 5px; 
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.02em;
  text-align: left;
}

.contact-card .status-msg { 
  display: none; 
  font-size: 14px; 
  padding: 12px; 
  border-radius: 2px; 
  margin-bottom: 1.5rem; 
  font-family: 'Josefin Sans', sans-serif;
}

.contact-card .status-msg.error { 
  background: #fdf0ef; 
  color: #c0392b; 
  border: 1px solid #f5c0bb; 
}

.contact-card button.primary {
  width: 100%; 
  padding: 1rem; 
  font-size: 0.85rem; 
  font-weight: 600; 
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--navy); 
  border: 1px solid var(--navy); 
  border-radius: 2px; 
  color: #ffffff;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.contact-card button.primary:hover { 
  background: var(--navy-light); 
  border-color: var(--navy-light);
}

.contact-card button.primary:active { 
  transform: scale(0.99); 
}

.contact-card button.primary:disabled { 
  opacity: 0.55; 
  cursor: not-allowed; 
}

.contact-card .success { 
  display: none; 
  text-align: center; 
  padding: 2rem 0; 
}

.contact-card .success .check-icon { 
  font-size: 48px; 
  color: var(--gold); 
  display: block;
  margin-bottom: 1rem;
}

.contact-card .success h2 { 
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; 
  font-weight: 400; 
  color: var(--navy);
  margin-bottom: 0.5rem; 
}

.contact-card .success p { 
  font-size: 1rem; 
  color: #666; 
  margin-bottom: 2rem;
}

.contact-card button.secondary {
  font-size: 0.75rem; 
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: none; 
  border: 1px solid var(--gold); 
  border-radius: 2px; 
  padding: 0.6rem 1.4rem; 
  color: var(--navy);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.contact-card button.secondary:hover { 
  background: var(--gold); 
  color: #ffffff;
}

@media (max-width: 768px) { 
  .contact-grid-2 { grid-template-columns: 1fr; gap: 0; } 
  .contact-grid-2 > div { margin-bottom: 1.5rem; }
  .contact-card { padding: 2.5rem 1.5rem; }
}

/* Language Flag Selector Styles */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

.flag-link {
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
  line-height: 0;
}

.flag-link img {
  width: 24px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  vertical-align: middle;
}

.flag-link:hover {
  transform: scale(1.15);
}

/* Dim the unselected language slightly to show which one is active */
.flag-link.inactive {
  filter: grayscale(40%) opacity(60%);
}

.flag-link.inactive:hover {
  filter: none;
}