body#top .site-header {
  background: transparent;
}

body#top .site-header-inner {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.agency-right {
  container-type: inline-size;
}

body#top .agency-right h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
  white-space: normal;
  max-width: none;
}

:root {
    /* Unified Layout Grid Variables */
    --page-max-width: 1440px; /* Adjust to match your ideal header width (e.g. 1280px, 1440px, or 1600px) */
    --page-padding: clamp(1rem, 2.5vw, 3rem); /* Strict responsive left/right padding */

    --marquee-speed: 60s;
    --logo-width: 80px;
    --logo-gap: 80px;
}

.marquee-container {
    overflow: hidden;
    user-select: none;
    padding: 40px 0;
    background: #ffffff;
    display: flex;
    position: relative;
    /* Soft edge fades */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: var(--logo-gap);
    align-items: center;
    animation: scroll var(--marquee-speed) linear infinite;
    padding-left: var(--logo-gap);
    will-change: transform;
    transform: translateZ(0);
}

.logo-item {
    width: var(--logo-width);
    transition: transform 0.3s ease;
}

.logo-item img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Keyframes for the loop */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } 
    /* We move -50% because JS will double the content */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        --logo-width: 50px;
        --logo-gap: 40px;
        --marquee-speed: 40s;
    }
    .marquee-container {
        padding: 20px 0;
    }
}

body#top .slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    overflow: hidden;
    background-color: #000;
    z-index: 0;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth fade transition */
    z-index: 0;
    will-change: opacity;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

.slideshow-slide img,
.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

body#top .founder-section,
body#top .founder-section *,
body#top .founder-section .founder-copy,
body#top .founder-section .founder-copy p,
body#top .founder-section .founder-copy .founder-signature,
body#top .founder-section .founder-copy .founder-byline {
    color: #7a6f6d;
}

/* Remove the dark/grey gradient overlay from the founder section */
body#top .founder-section::after {
    display: none;
}

/* Founder kicker heading styles */
body#top .founder-kicker {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(118, 102, 102);
  font-size: 18px;
  line-height: 23px;
}

body#top .founder-byline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: rgb(118, 102, 102);
  font-size: 13px;
  line-height: 20px;
  margin-top: 1rem;
}

/* Make the Services accordion font size 14px */
body#top .services-title,
body#top .services-accordion .accordion-trigger,
body#top .services-accordion .accordion-label,
body#top .services-accordion .accordion-panel p {
    font-size: 14px;
}

/* Reduce gap between accordion items */
body#top .services-accordion {
    gap: 18px; /* Adjust if the container uses flexbox/grid */
}
body#top .services-accordion .accordion-item {
    margin-bottom: 14px; /* Adjust if the items use block margins */
}
body#top .services-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

/* Set services tagline font size to 14px */
body#top .services-tagline {
    font-size: 14px;
}

/* Agency bottom paragraphs typography */
body#top .agency-bottom p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    color: rgb(118, 102, 102);
    font-size: 14px;
    line-height: 24px;
}

/* Section label styling */
body#top .section-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: rgb(118, 102, 102);
    font-size: 16px;
    line-height: 19px;
}

/* Agency intro styling */
body#top .agency-intro {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(118, 102, 102);
    font-size: 14px;
    line-height: 24px;
}

/* Custom agency video height */
body#top .agency-video {
    height: auto;
    max-height: clamp(280px, 38vh, 520px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* =========================================================================
   UNIFIED GRID ALIGNMENT
   Applies the exact same constraints to header and all section wrappers
   to create a strict, straight pixel-perfect vertical grid line.
   ========================================================================= */
body#top .site-header-inner,
body#top .strip-inner,
body#top .agency-wrap,
body#top .services-clean-inner,
body#top .restaurant-showcase-wrap,
body#top .founder-wrap,
body#top .testimonials-wrap,
body#top .contact-replica-wrap,
body#top .fish-footer-content {
    max-width: var(--page-max-width) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--page-padding) !important;
    padding-right: var(--page-padding) !important;
    box-sizing: border-box !important;
}

/* Snap footer meta strictly matching the unified layout grid */
body#top .fish-footer-meta {
    left: var(--page-padding);
    right: var(--page-padding);
    bottom: clamp(1.5rem, 4vw, 2.5rem);
}

body#top .restaurant-showcase-frame {
    width: min(100%, 735px);
    max-width: 735px;
    margin: 0 auto;
}

body#top .restaurant-showcase-kicker {
    width: min(100%, 735px);
    max-width: 735px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio grid layout for all screen sizes */
body#top .restaurant-showcase-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 8px !important;
    width: 100% !important;
}

body#top .restaurant-showcase-grid img,
body#top .restaurant-showcase-grid video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    display: block !important;
}

/* Keep the services block aligned to the grid */
body#top .services-content {
    margin-left: auto;
    width: min(100%, 620px);
}

/* Reset layout shift for mobile to prevent overflow */
@media (max-width: 960px) {
    body#top .services-content {
        margin-left: 120px;
    }
}

@media (max-width: 1024px) {
    body#top .services-tagline {
        width: min(100%, 900px);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Keep founder copy readable without stretching across the section */
body#top .founder-copy p {
    max-width: 650px;
    padding-right: 0;
}

/* Founder text description styles */
body#top .founder-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(118, 102, 102);
    font-size: 13px;
    line-height: 1.8;
}

/* Responsive layout for the founder section with full background */
body#top .founder-wrap {
    position: relative;
    z-index: 2; /* Keeps text above background slider */
    display: flex;
    align-items: center;
    min-height: clamp(1300px, 100vh, 1500px); /* Matches section height */
}

body#top .founder-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 620px;
    padding: clamp(2rem, 4vw, 3rem);
}

/* iPad layout constraints to reduce black space and match image height */
@media (max-width: 1024px) {
    body#top .founder-wrap {
        min-height: 65vw;
    }
    body#top .founder-copy {
        padding: 60px 100px;
    }
    body#top .agency-video {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    body#top .founder-section {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 0;
        background-color: #ffffff;
    }
    body#top .slideshow-container {
        position: relative;
        height: auto;
        min-height: auto;
        aspect-ratio: auto;
        background-color: transparent;
    }
    body#top .slideshow-slide:first-child {
        position: relative; /* Props up the container to match the exact height of the image */
    }
    body#top .slideshow-slide img,
    body#top .slideshow-image {
        height: auto !important; /* Allows the image to dictate its natural uncropped size */
    }
    body#top .founder-wrap {
        min-height: auto;
        background-color: white;
    }
    body#top .founder-copy {
        padding: 40px 0;
    }
    body#top .founder-copy p {
        padding-right: 0;
        max-width: 100%;
    }
}

/* Reduce space from the bottom of the Testimonials section */
body#top .testimonials-section {
    margin-bottom: 0 !important; /* Change to 10px or 20px if you still want a tiny bit of space */
}

/* Reduce gap between Contact section and Footer */
body#top .contact-replica {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important; /* Decrease this value if you want even less space */
}

body#top .fish-footer {
    margin-top: 0 !important;
}

/* Set font family for Become a Client and Testimonials sections */
body#top .contact-replica,
body#top .contact-replica input,
body#top .contact-replica textarea,
body#top .contact-replica button,
body#top .testimonials-section,
body#top .testimonials-section button {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Make Testimonials and Contact text tiny */
body#top .testimonials-kicker,
body#top .testimonials-year,
body#top .testimonial-text,
body#top .testimonial-author,
body#top .testimonial-btn {
    font-size: 13px;
}

body#top .contact-copy p,
body#top .contact-form input,
body#top .contact-form textarea,
body#top .contact-form button {
    font-size: 13px;
}

/* "Become a Client" heading responsive 30px */
body#top .contact-copy h2 {
    font-size: clamp(22px, 5vw, 30px);
}

/* Reduce gap between Become a Client heading and paragraph */
body#top .contact-copy p {
    margin-top: 12px;
}

/* Elementor-specific container and slideshow overrides */
.elementor-element.elementor-element-12cce86 {
    min-height: 0px;
    height: 1294.94px;
    display: flex;
    flex-direction: column;
    align-items: normal;
    justify-content: normal;
    text-align: start;
}

.elementor-background-slideshow__slide__image {
    height: 100%;
    width: 100%;
    display: block;
    text-align: initial;
}

h2.elementor-heading-title {
    color: rgb(118, 102, 102);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: -1px;
    text-transform: none;
    text-align: start;
    display: block;
    margin: 0;
    padding: 0;
}

/* View More Button Wrapper */
.view-more-wrap {
    text-align: center;
    margin-top: -2.5rem; /* Pulls button up closer to the gallery */
    margin-bottom: 1.5rem; /* Reduced space below */
}

/* View More Button styles */
.view-more-btn {
    box-sizing: border-box;
    box-shadow: none;
    width: auto;
    display: inline-block;
    text-align: center;
    transition: 0.3s;
    border-style: none;
    border-radius: 200px;
    padding: 15px 30px;
    background-color: transparent;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: rgb(118, 102, 102);
    fill: rgb(118, 102, 102);
    text-decoration: inherit;
    cursor: pointer;
}

.view-more-btn:hover,
.view-more-btn:active {
    background-color: transparent;
    color: rgb(51, 51, 102);
}

.view-more-btn:focus {
    color: rgb(118, 102, 102);
}

/* Footer bottom text styling */
body#top .fish-left p,
body#top .fish-right p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(234, 236, 222);
    font-size: 13px;
    line-height: 11px;
}

/* Back to Top and Instagram link styling */
body#top .fish-top,
body#top .fish-instagram {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 24px;
}

@media print {
    .view-more-btn {
        background: transparent !important;
        color: rgb(0, 0, 0) !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

@media (max-width: 768px) {
    /* Adjust footer typography line-heights for a cleaner mobile stack */
    body#top .fish-left p,
    body#top .fish-right p {
        line-height: 1.4;
    }
    body#top .fish-top,
    body#top .fish-instagram {
        line-height: 1.2;
    }
}

/* Keep the services stack aligned on smaller screens */
@media (max-width: 768px) {
    body#top .services-title,
    body#top .services-accordion,
    body#top .services-tagline {
        padding-left: 120 !important;
    }
    body#top .services-tagline {
        text-align: left;
    }
}

body#top .testimonial-text,
body#top .testimonial-author {
    transition: opacity 0.22s ease;
}

body#top .testimonial-text.is-fading,
body#top .testimonial-author.is-fading {
    opacity: 0;
}

body.portfolio-page .restaurant-showcase:first-of-type {
    padding-top: clamp(6rem, 10vw, 8rem);
}

@media (prefers-reduced-motion: reduce) {
    body#top .slideshow-slide,
    body#top .testimonial-text,
    body#top .testimonial-author,
    body#top .reveal-on-scroll {
        transition: none !important;
        animation: none !important;
    }
}
/* related resource: extracted-style.css:293:5 */
body#top .services-content { /* the element was .services-content */
  margin-left: 60px;
  width: calc(100% - 20px);
  padding-right: 60px;
  box-sizing: border-box;
}

/* related resource: extracted-style.css:558:5 */
body#top .services-accordion { /* the element was div#servicesAccordion */
  padding-left: 60px;
  box-sizing: border-box;
}


/* related resource: extracted-style.css:558:5 */
body#top .services-title { /* the element was p.services-title */
  text-align: left;
  margin-left: 65px;
}