/* ...existing code... */
@import url('https://fonts.googleapis.com/css2?family=Andada:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

:root{
    --black: #1E1E1E;
    --accent: #DE9535;
    --muted-bg: #f9f9f9;
    --slide-small: 260px;
    --slide-large: 340px;
    --slide-small-h: 300px;
    --slide-large-h: 420px;
    --carousel-gap: 20px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
@media(prefers-reduced-motion:reduce){
html{scroll-behavior:auto}
}
html,body{height:100%}
body{
    font-family: "Avenir roman", "Avenir Next", Helvetica, Arial, sans-serif;
    color: var(--black);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;
    background:#fff;
}

/* Make all Andada Pro text italic */
.hero-title,
.slogan-text h2,
.section-title,
.tile-title,
.about-text h4,
.gallery-title,
.booking-text h2,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Andada', serif;
    font-style: italic;
    font-weight: 700;
}


/* container consistent */
.container{max-width:1920px;margin:0 auto;padding:0 10px}

/* NAV */
nav{background:#fff;position:fixed;top:0;left:0;width:100%;z-index:1200;}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 20px}
.logo img{height:46px; padding-top: 8px;}
.menu{display:flex;gap:42px;align-items:center}
.menu a{
    font-size:13px;
    color:var(--accent);
    text-decoration:none;
    letter-spacing:1px;
    font-weight:600;
    font-style: italic;
    padding:8px 0;
    position:relative;
    display:inline-block;
}
.menu a::after{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:2px;
    background-color:var(--accent);
}
.menu a.active::after{
    animation: expandLine 0.6s ease forwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.main-nav .whatsapp-icon{font-size:18px; font-weight: 800;}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* offset for fixed nav */
.hero + *{margin-top:0}
body {padding-top:76px}

/* HERO VIDEO */
.hero{position:relative;height:86vh;min-height:520px;overflow:hidden;display:flex;align-items:flex-end;justify-content:center;padding-bottom:60px;}
.hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover; z-index:1}
.hero-overlay{position:relative;z-index:6;text-align:center;color:#fff;display:flex;flex-direction:column;align-items:center;gap:10px}
.hero-logo{height:70px;margin-bottom:auto;}
.hero-title{font-family:'Inkut Antiqua', serif;font-size:36px;letter-spacing:2px;margin-top:6px;color:#fff}
.hero-sub{font-size:16px;color:#fff;opacity:0.95;font-weight: 400;}
.hero-diamond{margin-top:auto;padding-top: 230px;}


/* hero bottom divider */
.divider-container{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:60px;              /* adjust height as needed */
    z-index:5;                 /* sits above video, below overlay */
    display:flex;
    align-items:stretch;
    pointer-events:none;
    box-sizing:border-box;
}

.left-rectangle {
    flex: 1;
    background: #ffffff; /* Adjust color as needed */
    border-top-right-radius: 40px; /* Adjust corner radius as needed */
}

.right-rectangle {
    flex: 1;
    background: #ffffff; /* Adjust color as needed */
    border-top-left-radius: 40px; /* Adjust corner radius as needed */
}

/* SLOGAN - braced layout */
.slogan{background:#fff;padding:70px 20px 120px}
.braced{display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap}
.braced .brace{font-family:'Avenir', serif;color:var(--accent);font-size:120px;line-height:1;margin:0;user-select:none}
.braced.small .brace{font-size:80px}
.brace-icon{width:40px;height:40px;flex-shrink:0;opacity:0.9}
.slogan-text{max-width:760px;text-align:center}
.slogan-text .eyebrow{font-size:12px;color:var(--accent);letter-spacing:2px;margin-bottom:18px;text-transform:uppercase; padding-top: 58px;}
.slogan-text h2{font-family:'Andada', serif;color:var(--accent);font-size:28px;font-weight:400;padding: 40px 10px}
.slogan-text h2 strong{font-weight:800}
.slogan-text .byline{font-size:12px;color:var(--accent);margin-top:14px;font-weight:600; padding-bottom: 58px;}

/* Custom request section button spacing */
.custom-request{ border-top: 2px solid var(--accent);
}

.custom-request .slogan-text .eyebrow {
    margin-bottom: 80px;
    font-size: 16px;
}

.custom-request .slogan-text .cta-button {
    margin: 0px;
}

.custom-request .slogan-text .byline {
    margin-top: 80px;
    font-size: 16px;
}

.button-with-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.button-with-arrows .arrow-left,
.button-with-arrows .arrow-right {
    color: var(--accent);
    font-size: 20px;
}


/* SERVICES tiles */
.services{background: #fff;padding:0 0}
.services .container {
    max-width: 100%; /* allow full width */
    padding: 0 0; /* remove container padding */
}
.service-grid{display:flex;flex-direction: row;width: 100%;}
.service-item{position:relative;flex:1;overflow:hidden;display:block;text-decoration:none;color:inherit;background:#000;height:650px}
.service-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
.service-item:hover img{transform:scale(1.06)}
.elopement-tile .coming-soon-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(222,149,53,0.78);color:#fff;font-family:'Andada', serif;font-style:italic;font-size:28px;letter-spacing:1px;opacity:0;transition:opacity .3s ease;text-transform:uppercase;z-index:2;pointer-events:none}
.elopement-tile:hover .coming-soon-overlay{opacity:1}
.tile-caption{z-index: 1;position:absolute;left:24px;right:24px;bottom:22px;color:#dedede;display:flex;align-items:center;justify-content: space-between; gap:18px}
.tile-title{font-family:'Andada', serif;font-size:20px;letter-spacing:0.6px}
.tile-arrow{font-size:22px;}
.service-item::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.45) 100%);transition:background .25s}

/* ABOUT */
.about{padding:0px ;background:#fff;position:relative}
.about-content {
    display: flex;
    align-items: center;
    position: relative; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 720px;
    position: relative;
}
.about-text {
    flex: 0 0 520px; /* Fixed width */
    padding-right: 40px; /* Space between text and image */
}
.about-text h4{font-family:'Andada', serif;color:var(--accent);margin-bottom:58px;font-size:28px}
.about-text p{color:#555;margin-bottom:58px}
.about-image {
    position: absolute; /* Position absolutely */
    right: min(0px, calc((1200px - 100vw) / 2));          /* Align to right edge */
    top: 50%;         /* Center vertically */
    transform: translateY(-50%);
       
}
.about-image img {  
    object-fit: cover;
    display: block;
    height: 720px;
}

/* GALLERY */

.gallery{background:var(--black);padding-top:80px;padding-bottom:150px;overflow: visible}
.gallery-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* make this element full viewport width */
    overflow:hidden; /* let slides overflow */
}
.carousel-track {
    display: flex;
    gap: var(--carousel-gap);
    align-items: center;
    will-change: transform;

    /* padding so first / last slide are half-overlapping edges */
    padding-left: 0;
    padding-right: calc(50vw - var(--slide-small) / 2);
    box-sizing: content-box; /* keep padding outside normal flow for calculations */
}

@keyframes continuousSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-54%); /* Move through ~13 of 24 slides (54% ≈ 13 slides) */
    }
}

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

/* slides: alternating widths */
.carousel-slide {
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    background: #111;
}

/* odd / even widths and heights (two sizes) */
.carousel-slide:nth-child(odd)  { width: var(--slide-large); }
.carousel-slide:nth-child(even) { width: var(--slide-small); }

/* set corresponding heights (match aspect visually) */
.carousel-slide:nth-child(odd) img  { height: var(--slide-large-h); }
.carousel-slide:nth-child(even) img { height: var(--slide-small-h); }

/* slightly lift center slide when focused (optional) */
.carousel-slide.is-centered {
    transform: translateY(-6px) scale(1.02);
    transition: transform .35s ease;
    z-index: 2;
}

.gallery-title{text-align:center;font-family:'Andada', serif;color:#fff;margin-bottom:80px;font-size: 28px;}
.gallery-row{display:flex;gap:18px;justify-content:center;align-items:center;overflow:hidden;padding:10px 0}
.gallery-row img{width:180px;height:150px;object-fit:cover;border:6px solid #111;display:block}

/* ============================================ */
/* ABOUT PAGE - LAND SECTION */
/* ============================================ */

.land-section {
  background: #fff;
  padding: 0 0 80px 0;
}

/* Land Header */
.land-header {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 60px;
}

.land-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Land Title */
.land-title {
  font-family: 'Andada', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  text-align: center;
  margin: 0 0 40px 0;
}

/* Land Text */
.land-text {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: justify;
  text-align-last: center;
  padding: 0 20px;
}

.land-text p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 20px 0;
}

.land-text p:last-child {
  margin-bottom: 0;
}

/* Land Gallery */
.land-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.land-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* CONTACT */

.contact{
  position:relative;
  background: #f6f0e6 url('img/envelope.jpg') center/cover no-repeat;
  padding: 80px 0 100px;
  overflow:hidden;
  margin-top: 0;
}
.contact .container{max-width:900px}
.contact-head{
  display:flex;flex-direction:column;align-items:center;gap:14px;margin-bottom:88px
}
.contact-pattern{width:36px;height:36px}
.contact h2{
  font-family:'Andada', serif; font-style:italic;
  font-size:24px; color:var(--accent); text-align:center;
}

.contact-form{
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: min(540px, 90%);
  padding:14px 18px;
  border-radius:26px;
  border:1px solid rgba(0,0,0,0.08);
  background:#fff;
  box-shadow:0 8px 16px rgba(0,0,0,0.15);
  outline:none;
  font-family: "Avenir roman", "Avenir Next", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--black);
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  opacity: 1;
}

.contact-form textarea{
    min-height: 120px;
    resize: vertical;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff !important;
}

.chip-group{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:16px 22px; width:min(600px,100%); margin:6px 0;
}

.chip-group > label {
  flex: 0 0 auto;
}

.chip-input{position:absolute;opacity:0;pointer-events:none}
.chip{
  display:inline-flex; align-items:center; gap:10px; font-size: 14px;
  padding:10px 16px; border-radius:20px;
  background:#ffffff; color:#666; font-weight:300;
  box-shadow:0 6px 12px rgba(0,0,0,0.12); cursor:pointer;
  transition:background .2s,color .2s;
}
.chip::before{
  content:""; width:16px;height:16px;border-radius:4px;
  background:#e5e5e6;
}
.chip-input:checked + .chip{background:#fff;color:var(--black)}
.chip-input:checked + .chip::before{background:var(--accent);box-shadow:none}

.contact .cta-button{margin-top:34px}

/* Thank You Message */
.thank-you-message {
  display: none;
  padding: 60px 20px;
  text-align: center;
}

.thank-you-title {
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: 56px;
  color: var(--accent);
  margin: 0 0 20px 0;
  font-weight: 400;
}

.thank-you-text {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.thank-you-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.thank-you-icons a {
  color: var(--accent);
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.thank-you-icons a:hover {
  opacity: 0.7;
}

/* CTA */
.cta-button{display:inline-block;background:var(--accent);color:#fff;border-radius:24px;padding:10px 20px;text-decoration:none;font-weight:600;border:1px solid var(--accent);cursor:pointer;transition:all 0.3s ease}
.cta-button:hover{background:#fff;color:var(--accent);border:1px solid var(--accent)}

/* FOOTER */
footer{background:var(--black);color:#fff;padding:34px 20px 56px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;grid-template-rows:auto auto;gap:16px;align-items:center}
.footer-top-left{font-family:'Andada', serif;color:#fff}
.footer-top-center{display:flex;justify-content:center;align-items:center}
.footer-top-right{display:flex;justify-content:flex-end;gap:12px}
.footer-bottom-right{display:flex;justify-content:flex-end;gap:18px}
.footer-email{color:#fff;text-decoration:underline;font-weight:700; font-style: italic;}
.footer-nav a{color:#ddd;text-decoration:none;font-size:13px}
.footer-socials a{color:#ddd}
.footer-copy{margin-top:16px;text-align:center;color:#aaa;font-size:12px}
.footer-nav a,
.footer-socials a,
.footer-email{transition:color .2s ease}
.footer-nav a:hover,
.footer-socials a:hover,
.footer-email:hover{color:var(--accent)}



/* GALLERYOLD PAGE STYLES */
/* GALLERYOLD PAGE STYLES */
/* GALLERYOLD PAGE STYLES */
/* GALLERYOLD PAGE STYLES */
/* GALLERYOLD PAGE STYLES */

.gallery-page {
    padding: 120px 0 0;
    background: #fff;
    width: 100%;
    border-top: 2px solid var(--accent);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-title {
    font-family: 'Andada', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 48px;
    margin: 0;
}

.selected-works {
    font-size: 16px;
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Grid Gallery Layout - structured pattern */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Changed to 6 columns for better math */
    gap: 0;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image sizing */
.gallery-item.horizontal {
    aspect-ratio: 16/9;
    grid-column: span 3; /* Each horizontal image spans 3 of 6 columns = half width */
}

.gallery-item.vertical {
    aspect-ratio: 3/4;
    grid-column: span 2; /* Each vertical image spans 2 of 6 columns = third width */
}

.gallery-item.full-width {
    aspect-ratio: 16/9;
    grid-column: 1 / -1; /* spans all columns */
}

/* Caption on hover */
.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Video play icon */
.video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.video-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Dark overlay for better text/icon visibility */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================ */
/* GALLERY2 PAGE - CATEGORY SWITCHING */
/* ============================================ */

.gallery2-page {
    padding: 0;
    background: #fff;
}

.gallery2-page .page-title {
    font-family: 'Andada', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* Category Card */
.category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    background: #f5e6d3; /* Light orange tone */
    transition: all 0.4s ease;
}

.category-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-bg-image,
.category-card.active .category-bg-image {
    opacity: 1;
}

.category-card:hover .category-overlay,
.category-card.active .category-overlay {
    opacity: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-title {
    font-family: 'Andada', serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
    transition: color 0.4s ease;
    line-height: 1.2;
}

.category-card:hover .category-title,
.category-card.active .category-title {
    color: #fff;
}

.category-number {
    font-family: 'Andada', serif;
    font-style: italic;
    font-size: 108px;
    color: var(--accent);
    align-self: flex-end;
    transition: color 0.4s ease;
    font-weight: 800;
    margin-right: 20px;
    line-height: 1;
}

.category-card:hover .category-number,
.category-card.active .category-number {
    color: #fff;
}

/* Gallery Display Area */
.category-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-content {
    display: block;
    animation: fadeIn 0.5s ease;
}

.gallery-content.hidden {
    display: none;
}

.coming-soon-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px;
    background: var(--muted-bg);
}

.coming-soon-message h3 {
    margin: 0;
    font-family: 'Andada', serif;
    font-style: italic;
    font-size: 40px;
    color: var(--accent);
    letter-spacing: 1px;
}

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

/* ============================================ */
/* SERVICES PAGE */
/* ============================================ */

.services-page {
    padding: 80px 0 0;
    background: #fff;
    overflow-x: hidden;
    border-top: 2px solid var(--accent);
}

.services-page .page-title {
    font-family: 'Andada', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

/* Keep anchored sections clear of the fixed nav */
.service-detail,
#contact {
    scroll-margin-top: 110px;
}

/* Service Detail Layout */
.service-detail {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
}

.line {
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: stretch;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

/* Service Text */
.service-text {
    flex: 0 0 50%;
    width: 50%;
    padding: 60px 80px;
    box-sizing: border-box;
}

.service-text h2 {
    font-family: 'Andada', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-text p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-text .service-subtitle {
    font-style: italic;
    color: var(--accent);
    font-size: 16px;
}

.service-text ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.service-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.service-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('img/pattern05.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-cta {
    margin-top: 20px;
}

/* Service Images Layout */
.service-images {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0;
    padding: 0;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    align-self: stretch;
}

.service-image-wrapper.main-image {
    flex: 0 0 auto;
    width: 40%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.sub-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.sub-images .service-image-wrapper {
    flex: 1;
    height: 50%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.service-image-wrapper {
    display: block;
    margin: 0;
    padding: 0;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.service-images:hover .service-image-wrapper img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Service Image Arrow */
.service-images .image-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    z-index: 3;
}

/* Hide arrow for elopement overlay tile */
.service-images.elopement-overlay .image-arrow {
    display: none;
}

.service-images:hover .image-arrow {
    opacity: 1;
}

/* Service Image Overlay */
.service-images::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-images:hover::after {
    opacity: 1;
}

/* Elopement overlay (services page) */
.service-images.elopement-overlay .coming-soon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(222,149,53,0.78);
    color: #fff;
    font-family: 'Andada', serif;
    font-style: italic;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.service-images.elopement-overlay:hover .coming-soon-overlay {
    opacity: 1;
}

/* ============================================ */
/* ABOUT PAGE - TEAM SECTION */
/* ============================================ */

.team-details {
    background: #fff;
    padding: 80px 20px;
}

.team-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Images */
.team-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.team-photo {
    flex: 0 0 503px;
}

.team-photo img {
    width: 503px;
    height: 335px;
    object-fit: cover;
    display: block;
}

/* Team Text */
.team-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: justify;
    text-align-last: center;
}

.team-text p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* Team Signatures */
.signatures {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.signature {
    flex: 0 0 auto;
}

.signature img {
    width: 200px;
    height: auto;
    display: block;
    transform-origin: center center;
}

.signature-left img {
    transform: rotate(-6deg) translateY(0) scale(0.8) !important;
}

.signature-right img {
    transform: rotate(6deg) translateY(0) !important;
}

/* ============================================ */
/* RESPONSIVE STYLES */
/* ============================================ */

/* Tablet & Medium Screens (1024px and below) */
@media (max-width: 1024px) {
    /* General */
    .container {
        padding: 0 20px;
    }
    
    /* Hero */
    .hero {
        height: 75vh;
        min-height: 480px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-sub {
        font-size: 14px;
    }
    
    .hero-logo {
        height: 60px;
    }

    .hero-diamond{padding-top: 210px;}
    
    /* About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 0 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .about-text {
        flex: 1;
        padding: 0;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-text h4,
    .about-text p {
        max-width: 600px;
    }
    
    .about-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 0 40px;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        max-height: 500px;
    }
    
    /* Gallery Page */
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item.horizontal {
        grid-column: span 2;
    }
    
    .gallery-item.vertical {
        grid-column: span 1;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    /* Gallery2 Categories */
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 0 20px;
    }
    
    .category-card {
        aspect-ratio: 3/4;
    }
    
    .category-content {
        padding: 16px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .category-number {
        font-size: 60px;
        margin-right: 10px;
    }
    
    /* Carousel */
    :root {
        --slide-small: 220px;
        --slide-large: 280px;
        --slide-small-h: 260px;
        --slide-large-h: 360px;
    }
    
    /* Contact Form */
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: min(500px, 90%);
    }
    
    .chip-group {
        width: min(600px, 100%);
    }
    
    /* Team Section */
    .team-photo {
        flex: 1;
    }
    
    .team-photo img {
        width: 100%;
        height: auto;
        aspect-ratio: 503/335;
    }
}

/* Small Tablet & Landscape Mobile (900px and below) */
@media (max-width: 900px) {
    /* Navigation */
    .nav-inner {
        padding: 14px 20px;
    }
    
    .menu {
        gap: 28px;
    }
    
    .menu a {
        font-size: 13px;
        letter-spacing: 1.2px;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
    }
    .hero-diamond{padding-top: 150px;}
    
    /* Slogan */
    .slogan {
        padding: 50px 20px 80px;
    }
    
    .braced {
        gap: 60px;
    }
    
    .braced .brace {
        font-size: 84px;
    }
    
    .brace-icon {
        width: 48px;
        height: 48px;
    }
    
    .slogan-text h2 {
        font-size: 24px;
        padding: 30px 10px;
    }
    
    /* Service Tiles */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item {
        height: 360px;
    }
    
    .service-item img {
        height: 100%;
    }
    
    .tile-title {
        font-size: 18px;
    }
    
    .tile-arrow {
        font-size: 20px;
    }
    
    /* Gallery Carousel */
    .gallery-row img {
        width: 140px;
        height: 120px;
    }
    
    /* Services Page */
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        align-items: stretch;
    }
    
    .service-text {
        flex: 0 0 auto;
        width: 100%;
        padding: 40px 30px;
    }
    
    .service-images {
        flex: 1 1 auto;
        width: 100%;
        min-height: 350px;
        margin-bottom: 0;
    }
    
    .sub-images {
        height: 100%;
    }
    
    .sub-images .service-image-wrapper {
        height: 50%;
    }
    
    .services-page .page-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .service-images .image-arrow {
        font-size: 40px;
    }
    
    /* Contact */
    .contact {
        padding: 60px 0 100px;
    }
    
    .contact-head {
        margin-bottom: 60px;
    }
    
    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-nav a {
        margin-right: 0;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        font-size: 20px;
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .menu.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .menu a:nth-child(1) { transition-delay: 0.1s; }
    .menu a:nth-child(2) { transition-delay: 0.2s; }
    .menu a:nth-child(3) { transition-delay: 0.3s; }
    .menu a:nth-child(4) { transition-delay: 0.4s; }
    .menu a:nth-child(5) { transition-delay: 0.5s; }

    /* Slogan */
    .braced {
        gap: 30px;
    }
    
    .braced .brace {
        font-size: 72px;
    }
    
    .brace-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Team Section */
    .team-details {
        padding: 60px 20px;
    }
    
    .team-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-photo {
        flex: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-photo img {
        width: 100%;
        height: auto;
    }
    
    .team-text {
        margin-bottom: 40px;
        text-align: justify;
        padding: 0 40px;
    }
    
    .signatures {
        flex-direction: row;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    
    .signature img {
        width: 150px;
    }
}

/* Mobile (680px and below) */
@media (max-width: 680px) {
    /* General */
    body {
        padding-top: 72px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-inner {
        padding: 14px 18px;
    }
    
    .menu {
        gap: 20px;
    }
    
    .menu a {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .logo img {
        height: 42px;
    }
    
    /* Hero */
    .hero {
        height: 65vh;
        min-height: 420px;
    }
    
    .hero-logo {
        height: 50px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-sub {
        font-size: 13px;
    }
    
    .divider-container {
        height: 40px;
    }
    
    /* Slogan */
    .slogan {
        padding: 40px 20px 60px;
    }
    
    .braced {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        position: relative;
    }
    
    .braced .brace {
        display: none;
    }
    
    .brace-icon {
        width: 24px;
        height: 24px;
    }
    
    .brace-icon:first-child {
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .slogan-text {
        order: 2;
    }
    
    .brace-icon:last-child {
        order: 3;
        width: 100%;
        text-align: center;
    }
    
    .slogan-text .eyebrow {
        padding-top: 30px;
    }
    
    .slogan-text h2 {
        font-size: 20px;
        padding: 10px 5px;
    }
    
    .slogan-text .byline {
        padding-bottom: 30px;
    }
    
    /* Service Tiles */
    .service-grid {
        flex-direction: column;
    }
    
    .service-item {
        height: 200px;
        aspect-ratio: auto;
    }
    
    .service-item img {
        height: 100%;
    }
    
    .tile-title {
        font-size: 18px;
    }
    
    .tile-arrow {
        font-size: 18px;
    }
    
    /* About */
    .about {
        padding: 40px 0;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .about-text h4 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .about-text p {
        margin-bottom: 30px;
    }
    
    /* Land Section */
    .land-header {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .land-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .land-text {
        font-size: 14px;
        margin-bottom: 40px;
        text-align: justify;
    }
    
    .land-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Gallery Carousel */
    :root {
        --slide-small: 180px;
        --slide-large: 220px;
        --slide-small-h: 220px;
        --slide-large-h: 280px;
        --carousel-gap: 15px;
    }
    
    .gallery {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    
    .gallery-title {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .category-gallery {
        padding: 0 20px;
    }
    
    /* Contact */
    .contact {
        padding: 50px 0 80px;
    }
    
    .contact h2 {
        font-size: 20px;
    }
    
    .contact-head {
        margin-bottom: 50px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .chip {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .chip-group {
        gap: 12px 16px;
        width: min(450px, 95%);
    }
    
    /* Footer */
    footer {
        padding: 30px 20px 40px;
    }
    
    .footer-nav a {
        font-size: 12px;
    }

    /* Footer stack */
    .footer-grid{
        grid-template-columns:1fr;
        grid-template-rows:repeat(6,auto);
        text-align:center;
        gap:10px;
    }
    .footer-top-right,
    .footer-bottom-right{justify-content:center;}
    .footer-top-center,
    .footer-bottom-center{justify-content:center;}
    .footer-bottom-left{text-align:center;}
    .footer-nav{justify-content:center;}
    
    /* Gallery Page */
    .gallery-page {
        padding: 100px 0 60px;
    }
    
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .selected-works {
        font-size: 14px;
    }
    
    .masonry-gallery {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .gallery-item.horizontal,
    .gallery-item.vertical,
    .gallery-item.full-width {
        grid-column: 1;
        aspect-ratio: 4/3;
    }
    
    .video-item .play-icon {
        font-size: 40px;
    }
    
    /* Gallery2 Page */
    .gallery2-page {
        padding: 100px 0 0 0;
    }
    
    .gallery2-page .page-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .category-card {
        height: 120px; /* very thin like home service tiles */
        aspect-ratio: auto;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-number {
        font-size: 60px;
    }
    
    /* Services Page */
    .services-page {
        padding: 60px 0 0;
    }
    
    .services-page .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .service-text {
        padding: 30px 60px;
        text-align: left;
    }
    
    .service-text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-images {
        min-height: 350px;
        flex-direction: column;
    }
    
    .service-image-wrapper.main-image {
        width: 100%;
        height: 260px;
        flex: 0 0 auto;
    }
    
    .sub-images {
        width: 100%;
        height: auto;
        flex-direction: row;
        gap: 0;
    }
    
    .sub-images .service-image-wrapper {
        flex: 1;
        height: 260px;
        width: 50%;
    }
    
    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-images .image-arrow {
        font-size: 36px;
    }
    
    /* Lightbox Mobile */
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 32px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-nav {
        font-size: 28px;
        padding: 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }
    
    .slogan-text h2 {
        font-size: 18px;
        padding: 8px 3px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .category-number {
        font-size: 48px;
    }
    
    .menu a {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    .chip {
        font-size: 12px;
        padding: 7px 12px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: none;
}

.lightbox-content.active {
    display: block;
}

#lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
}

#lightbox-video::-webkit-media-controls {
    visibility: visible !important;
}

#lightbox-video::-webkit-media-controls-panel {
    display: flex !important;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    color: var(--accent);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}
