.elementor-9400 .elementor-element.elementor-element-3e4716b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-76270b4 */@charset "UTF-8";
:root {
  --c-navy:       #053654;
  --c-teal-deep:  #2A7F8B;
  --c-teal-light: #74B3BC;
  --c-gold:       #8A6114;
  --c-on-dark:    #FFFFFF;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-display:  500;

  --t-xl: clamp(19px, 0.47vw + 17.24px, 24px);
  --t-sm: 14px;
  --t-xs: 12px;
  --lh-sm: 1.55;

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-6: 64px;

  --container: 1280px;
  --gutter:    clamp(20px, 5vw, 72px);
  --tap:       44px;
  --radius:    2px;
  --header-h:  76px;

  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
  --dur:  220ms;
}


/* --------------------------------------------------------------------------
   Box model, scoped to what this component owns.

   Not a nicety: .site-header__inner is width:100% with a gutter of padding,
   so under the default content-box it renders one gutter-pair WIDER than the
   viewport and the phone number hangs off the right edge. Every page in this
   project happens to carry a global `* { box-sizing: border-box }` reset, but
   relying on that would make this file self-contained in theory only — drop
   it into a page without the reset and the masthead breaks.

   Scoped rather than global on purpose: a shared component has no business
   redefining the box model for a host page's own markup.
   -------------------------------------------------------------------------- */
.site-header,
.site-header *,
.site-header *::before,
.site-header *::after,
.skip-link,
.nav-scrim { box-sizing: border-box; }


/* ==========================================================================
   02  SKIP LINK & UTILITIES
   Both live here because header.html ships them: the skip link has to be the
   first focusable element on the page, and the submenu buttons need an
   accessible name that is not drawn.
   ========================================================================== */
.skip-link {
  position: absolute;
  left: var(--s-2);
  top: var(--s-2);
  z-index: 200;
  transform: translateY(-200%);
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: var(--s-2) var(--s-3);
  background: var(--c-navy);
  color: var(--c-on-dark);
  font-family: var(--f-body);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* On the navy bar a teal ring sits at 2.7:1 against the ground, so the ring
   goes white here. No rule in this file sets outline: none.                 */
.site-header :where(a, button):focus-visible {
  outline: 3px solid var(--c-on-dark);
  outline-offset: 3px;
  border-radius: var(--radius);
}


/* ==========================================================================
   03  MASTHEAD SHELL
   Navy, in flow, is the DEFAULT — the inverse of the obvious arrangement and
   deliberately so. A transparent-by-default bar would put white labels on a
   white section the moment the scroll class failed to arrive.
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
  color: var(--c-on-dark);
  background: var(--c-navy);
  border-bottom: 1px solid color-mix(in srgb, var(--c-teal-light) 26%, transparent);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

/* Overlay mode. Taking the bar out of the flow — rather than pulling the
   hero up by --header-h — is what makes this safe: between 1240px and
   1400px the nav sets its two longest labels on two lines, so the bar is
   taller than the token says, and a fixed negative margin would open a gap
   above the hero at exactly those widths. Out of flow, its height stops
   mattering to anything else on the page.                                   */
.js.masthead-overlay .site-header { position: fixed; inset: 0 0 auto 0; }

/* The bar carries its own scrim rather than borrowing the hero's. Loading
   nav legibility onto the hero gradient would mean darkening the whole
   photograph to protect 12px labels; a 140%-tall fade behind the bar buys
   the same contrast and leaves the picture's midtones alone.                */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 140%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(5, 54, 84, 0.85) 0%,
    rgba(5, 54, 84, 0.55) 45%,
    rgba(5, 54, 84, 0.00) 100%);
  transition: opacity var(--dur) var(--ease);
}

/* At the top of an overlay page the bar dissolves into the photograph. */
.site-header.is-top {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-top::before { opacity: 1; }

/* An open panel hanging off a transparent bar reads as a rendering fault,
   so the masthead goes solid regardless of scroll position. Declared after
   .is-top, at equal specificity, so it wins.                                */
.site-header.is-nav-open {
  background: var(--c-navy);
  border-bottom-color: color-mix(in srgb, var(--c-teal-light) 26%, transparent);
}
.site-header.is-nav-open::before { opacity: 0; }

/* The inner rail sizes itself rather than depending on a page-level
   .container, so this component drops into any document unchanged.          */
.site-header__inner {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--header-h);
}


/* ==========================================================================
   04  BRAND
   ========================================================================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  flex: none;
  min-height: var(--tap);
  color: inherit;
  text-decoration: none;
}
.brand__mark { width: 40px; height: 40px; object-fit: contain; flex: none; display: block; }
.brand__name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  font-variation-settings: "opsz" 48;
  line-height: 1.2;
  letter-spacing: 0.005em;
  white-space: nowrap;
}


/* ==========================================================================
   05  HAMBURGER
   ========================================================================== */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--c-on-dark) 45%, transparent);
  border-radius: 0;
  color: var(--c-on-dark);
  font: inherit;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }


/* ==========================================================================
   06  PANEL (mobile / tablet)
   ========================================================================== */
.primary-nav {
  position: fixed;
  inset: var(--header-h) 0 0 auto;
  width: min(88vw, 400px);
  z-index: 70;
  padding: var(--s-4) var(--s-4) var(--s-6);
  background: var(--c-navy);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--dur) var(--ease), visibility 0s linear var(--dur);
}
.primary-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--dur) var(--ease), visibility 0s;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: color-mix(in srgb, var(--c-navy) 74%, transparent);
}

.primary-nav__list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }

.primary-nav__item {
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--c-teal-light) 24%, transparent);
}

/* :not(--tel) matters — the phone link is also a direct <a> child of a nav
   item, and without the exclusion it inherits the panel's 24px display
   setting, which on the desktop bar pushes the row onto two lines.          */
.primary-nav__item:not(.primary-nav__item--tel) > a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: var(--s-1) var(--s-6) var(--s-1) 0;
  color: var(--c-on-dark);
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: var(--fw-display);
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.primary-nav__item > a:hover { color: var(--c-teal-light); }
.primary-nav__item > a[aria-current="page"] { color: var(--c-teal-light); }

.sub-toggle {
  position: absolute;
  top: 2px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--c-teal-light);
  font: inherit;
  cursor: pointer;
}
.sub-toggle svg { width: 12px; height: 8px; display: block; transition: transform var(--dur) var(--ease); }
.sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.sub-nav { display: none; margin: 0; padding: 0 0 var(--s-2); list-style: none; }
.sub-nav.is-open { display: block; }
.sub-nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: var(--s-1) 0;
  color: color-mix(in srgb, var(--c-on-dark) 78%, transparent);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  line-height: var(--lh-sm);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.sub-nav a:hover { color: var(--c-teal-light); }

.primary-nav__item--tel { border-bottom: 0; padding-top: var(--s-4); }
.tel-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: var(--s-1) var(--s-3);
  border: 1px solid color-mix(in srgb, var(--c-on-dark) 45%, transparent);
  color: var(--c-on-dark);
  /* Stated, not inherited, so no panel rule can resize it. */
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tel-link:hover { background: var(--c-on-dark); color: var(--c-navy); }
.tel-link svg { width: 15px; height: 15px; flex: none; display: block; }


/* ==========================================================================
   07  BAR (>= 1240px)
   The panel gives way to a bar at 1240px, not the usual 1024px. Eight
   top-level items, six of them with submenus, plus a phone number need
   roughly 1100px of bar before anything wraps; forcing them into a 1024px
   window buys a cramped two-row masthead, where the panel — which is built,
   focus-trapped and keyboard-complete — does the job cleanly.
   ========================================================================== */
@media (min-width: 1240px) {
  .nav-toggle, .nav-scrim { display: none; }

  .primary-nav {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    overflow: visible;
    transform: none;
    visibility: visible;
    transition: none;
  }
  .primary-nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    /* nowrap, emphatically. With wrap the row breaks under pressure and the
       phone button — the last item — drops onto a second line under the
       menu, which is the one thing this bar must never do. Instead the
       items themselves shrink: each is capped at 13ch and falls back to its
       min-content width (the longest word), so a tight bar sets the longer
       labels on two lines rather than breaking the row.                    */
    flex-wrap: nowrap;
    gap: 0;
  }
  /* Shrinkable, but never below min-content, so a label wraps instead of
     clipping. The phone button opts out below via flex: none.             */
  .primary-nav__item { display: flex; border-bottom: 0; flex: 0 1 auto; }
  .primary-nav__item:not(.primary-nav__item--tel) > a {
    min-height: var(--tap);
    padding: var(--s-1);
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    line-height: var(--lh-sm);
    letter-spacing: 0.05em;
    white-space: normal;
    max-width: 13ch;
    text-wrap: balance;
  }
  /* The current page gets a rule, not a colour shift: teal-light on a
     transparent bar over photography is not a contrast you can promise.    */
  .primary-nav__item > a[aria-current="page"] {
    color: var(--c-on-dark);
    box-shadow: inset 0 -1px 0 var(--c-teal-light);
  }

  /* The disclosure button is a touch affordance. On the bar the submenu
     opens on hover and on focus-within, so it is removed from the layout
     and the a11y tree; the chevron is drawn on the link instead.           */
  .sub-toggle { display: none; }

  .primary-nav__item.has-sub > a { display: inline-flex; align-items: center; }
  .primary-nav__item.has-sub > a::after {
    content: "";
    flex: none;
    width: 7px;
    height: 4px;
    margin-left: 6px;
    background: currentColor;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    opacity: 0.75;
  }

  /* Right-hand dropdowns open leftwards so a 280px panel never hangs off
     the viewport edge.                                                     */
  .primary-nav__item.has-sub:nth-last-child(-n + 4) > .sub-nav { left: auto; right: 0; }
  .sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    min-width: 280px;
    padding: var(--s-2) var(--s-3) var(--s-3);
    background: var(--c-navy);
    border-top: 1px solid var(--c-gold);
    box-shadow: 0 24px 48px -24px rgba(5, 54, 84, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                visibility 0s linear var(--dur);
  }
  .primary-nav__item.has-sub:hover > .sub-nav,
  .primary-nav__item.has-sub:focus-within > .sub-nav,
  .sub-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                visibility 0s;
  }

  .primary-nav__item--tel { flex: none; align-items: center; padding-top: 0; margin-inline-start: var(--s-2); }
  .tel-link { padding: 6px 12px; font-size: 12px; }
}

/* Between 1240px and 1400px the two longest labels set on two lines. Only
   the text inside those items wraps; the row does not, so the phone button
   stays on the menu line and the bar keeps one consistent height.          */
@media (min-width: 1400px) {
  .primary-nav__item:not(.primary-nav__item--tel) > a {
    max-width: none;
    white-space: nowrap;
    padding-inline: 10px;
  }
}
@media (min-width: 1520px) {
  .primary-nav__item:not(.primary-nav__item--tel) > a { font-size: 13px; padding-inline: 12px; }
  .tel-link { font-size: 13px; padding: 6px var(--s-2); }
}


/* ==========================================================================
   08  REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::before,
  .primary-nav,
  .sub-nav,
  .sub-toggle svg,
  .nav-toggle__bars,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after { transition-duration: 0.01ms; }
}/* End custom CSS */