@font-face{
  font-family:'Archivo Black';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../fonts/archivo-black-latin.woff2') format('woff2');
}

@font-face{
  font-family:'League Spartan';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('../fonts/league-spartan-latin.woff2') format('woff2');
}

:root{
  --bg:#f6f6fb;
  --surface:#ffffff;
  --surface-soft:#f0f2ff;
  --ink:#1f1842;
  --muted:#4f4b72;
  --line:rgba(31,24,66,.16);
  --line-strong:rgba(31,24,66,.28);
  --accent:#f25b2c;
  --accent-2:#ffc448;
  --logo-red:#f25b2c;
  --logo-orange:#ff8a2f;
  --logo-yellow:#ffd955;
  --highlight:#efe5cb;
  --brand-deep:#210242;
  --brand-ocean:#00a2bf;
  --radius:20px;
  --radius-lg:30px;
  --shadow-sm:0 12px 30px rgba(31,24,66,.10);
  --shadow-md:0 24px 60px rgba(31,24,66,.16);
  --container:min(1120px, 92vw);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
body{
  margin:0;
  color:var(--ink);
  font-family:'League Spartan', system-ui, -apple-system, Segoe UI, sans-serif;
  line-height:1.65;
  background:
    radial-gradient(1200px 700px at 0% 0%, rgba(255,138,47,.17), transparent 62%),
    radial-gradient(900px 600px at 100% 15%, rgba(0,162,191,.14), transparent 60%),
    linear-gradient(180deg, #faf8ff 0%, var(--bg) 42%, #f5f7ff 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}

h1,h2,h3{
  margin:0 0 12px;
  line-height:1.08;
  color:var(--ink);
  font-family:'Archivo Black', 'League Spartan', sans-serif;
  letter-spacing:.01em;
}
h1{font-size:clamp(2.4rem, 5vw, 4.4rem); font-weight:400}
h2{font-size:clamp(2rem, 4vw, 3.2rem); font-weight:400}
h3{font-size:clamp(1.35rem, 2.6vw, 1.8rem); font-weight:400}

.section h2,
.page-header h1,
.cta h2{
  font-family:'Archivo Black', 'League Spartan', sans-serif;
  letter-spacing:.01em;
  line-height:.98;
}

p{margin:0 0 14px; color:var(--muted); font-size:clamp(1.14rem, 1.35vw, 1.28rem)}
.lead{font-size:clamp(1.2rem, 2.05vw, 1.42rem); color:rgba(31,24,66,.82)}
.lead--dark{font-size:clamp(1.18rem, 2vw, 1.38rem); color:rgba(31,24,66,.86)}
.small{font-size:.84rem; color:var(--muted)}

.container{width:var(--container); margin:0 auto}
.main{padding:0}

.header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(255,255,255,.14);
  background:linear-gradient(95deg, rgba(20,8,43,.88), rgba(36,6,72,.84));
  backdrop-filter:blur(18px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:82px;
}
.header__mobile-actions{display:none}
.header__quote{display:none}
.header__mobile-actions .header__quote{
  color:#fff;
  background:linear-gradient(135deg, #f25b2c, #ff8a2f 58%, #ffd955);
  border:1px solid rgba(167,59,25,.45);
  box-shadow:none;
}
.header__mobile-actions .header__quote:hover{
  color:#fff;
  background:linear-gradient(135deg, #dd4f24, #f07a22 58%, #f6c847);
  box-shadow:0 8px 22px rgba(31,24,66,.25);
}
.header__menu-toggle{
  display:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(16,7,32,.64);
  color:#fff;
  cursor:pointer;
}
.header__menu-toggle:hover{background:rgba(242,91,44,.26)}
.header__menu-toggle-icon,
.header__menu-toggle-icon::before,
.header__menu-toggle-icon::after{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .2s ease, opacity .2s ease;
  content:"";
}
.header__menu-toggle-icon::before{transform:translateY(-6px)}
.header__menu-toggle-icon::after{transform:translateY(4px)}
.header--menu-open .header__menu-toggle-icon{background:transparent}
.header--menu-open .header__menu-toggle-icon::before{transform:translateY(-1px) rotate(45deg)}
.header--menu-open .header__menu-toggle-icon::after{transform:translateY(-3px) rotate(-45deg)}
.brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}
.brand__logo{
  width:260px;
  max-width:min(48vw, 260px);
}
.brand__tag{
  font-size:.78rem;
  color:rgba(255,255,255,.76);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
  padding:7px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:14px;
  background:rgba(16,7,32,.56);
  box-shadow:0 10px 28px rgba(0,0,0,.32);
}
.nav a{
  padding:8px 12px;
  border-radius:10px;
  font-weight:700;
  color:rgba(255,255,255,.94);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover{
  background:rgba(242,91,44,.24);
  color:#fff6ce;
  transform:translateY(-1px);
}
.nav .btn{
  color:#fff;
  background:linear-gradient(135deg, #f25b2c, #ff8a2f 58%, #ffd955);
  border:1px solid rgba(167,59,25,.45);
  box-shadow:none;
}
.nav .btn:hover{
  color:#fff;
  background:linear-gradient(135deg, #dd4f24, #f07a22 58%, #f6c847);
  box-shadow:0 8px 22px rgba(31,24,66,.25);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:12px;
  border:1px solid transparent;
  background:var(--brand-deep);
  color:#fff;
  font-weight:800;
  letter-spacing:.015em;
  box-shadow:0 12px 26px rgba(31,24,66,.24);
  transition:transform .2s ease, filter .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-2px); filter:brightness(1.07); box-shadow:0 16px 34px rgba(31,24,66,.30)}
.btn:active{transform:translateY(0); box-shadow:0 8px 20px rgba(31,24,66,.24)}
.btn--small{padding:11px 16px; font-size:.92rem}
.btn--accent{
  background:linear-gradient(135deg, #f25b2c, #ff8a2f 58%, #ffd955);
  color:#fff;
}
.btn--send-request{
  padding:16px 28px;
  font-size:1.04rem;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 18px 36px rgba(167,59,25,.34);
}
.btn--ghost{background:transparent; border-color:rgba(255,255,255,.36); color:#fff}
.btn--ghost:hover{background:rgba(255,255,255,.10); box-shadow:none}
.btn--light{background:#fff; color:var(--ink)}
.btn--ghost-light{background:transparent; border-color:rgba(255,255,255,.45); color:#fff}
.btn--ghost-light:hover{background:rgba(255,255,255,.14); box-shadow:none}

.section{padding:92px 0; position:relative}
.section--tight{padding:70px 0}
.section:has(.cta){
  padding-bottom:0;
  border-bottom:0;
}
.section--tint{background:rgba(255,255,255,.58)}
.section--sand{
  background:
    linear-gradient(180deg, rgba(255,217,85,.35), rgba(242,91,44,.14));
}

.section--bg,
.section--bg-avocado,
.section--bg-tomatoes,
.section--bg-light,
.section--bg-ingredients,
.section--bg-gallery{
  position:relative;
  background:rgba(255,255,255,.74);
  border-block:1px solid rgba(255,255,255,.44);
}
.section--bg:before,
.section--bg-avocado:before,
.section--bg-tomatoes:before,
.section--bg-light:before,
.section--bg-ingredients:before,
.section--bg-gallery:before{
  content:"";
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  opacity:.18;
  pointer-events:none;
}
.section--bg > *,
.section--bg-avocado > *,
.section--bg-tomatoes > *,
.section--bg-light > *,
.section--bg-ingredients > *,
.section--bg-gallery > *{position:relative}

.section--bg:before{background-image:url("../img/summerland-texture-ingredients.png")}
.section--bg-avocado:before{
  background-image:image-set(
    url("../img/summerland-background-avocado.webp") type("image/webp"),
    url("../img/summerland-background-avocado.jpg") type("image/jpeg")
  );
}
.section--bg-tomatoes:before{
  background-image:image-set(
    url("../img/summerland-background-tomatoes.webp") type("image/webp"),
    url("../img/summerland-background-tomatoes.jpg") type("image/jpeg")
  );
}
.section--bg-light:before,
.section--bg-ingredients:before{
  background-image:image-set(
    url("../img/summerland-background-ingredients-light.webp") type("image/webp"),
    url("../img/summerland-background-ingredients-light.jpg") type("image/jpeg")
  );
}
.section--bg-gallery:before{
  background-image:image-set(
    url("../img/summerland-background-gallery.webp") type("image/webp"),
    url("../img/summerland-background-gallery.jpg") type("image/jpeg")
  );
}

.eyebrow{
  margin-bottom:10px;
  font-weight:700;
  font-size:.73rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--logo-orange);
}

.hero{
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:96px 0 74px;
  color:#fff;
  background:
    radial-gradient(1000px 460px at 75% 0%, rgba(255,138,47,.18), transparent 72%),
    linear-gradient(180deg, rgba(16,7,32,.36), rgba(16,7,32,.82)),
    image-set(
      url("../img/summerland-beach-hero-background-1800.webp") type("image/webp"),
      url("../img/summerland-beach-hero-background-1800.jpg") type("image/jpeg")
    ) center 50% / cover no-repeat;
}
.hero__inner{max-width:920px; text-align:center}
.hero .eyebrow{color:rgba(255,255,255,.80)}
.hero p,
.hero .lead{color:rgba(255,255,255,.90)}
.hero h1{text-wrap:balance}
.hero h1{
  font-family:'Archivo Black', 'League Spartan', sans-serif;
  font-size:clamp(3.2rem, 9vw, 7.2rem);
  letter-spacing:.01em;
  line-height:.96;
  text-transform:uppercase;
  color:#ffd955;
  background:linear-gradient(180deg, #ffe89a 0%, #ffd955 44%, #f25b2c 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 10px 30px rgba(0,0,0,.44);
}
.hero .lead{
  font-weight:600;
  letter-spacing:.01em;
}
.hero__actions{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:24px}
.hero__meta{margin-top:18px; display:flex; flex-wrap:wrap; gap:10px; justify-content:center}
.pill{
  border:1px solid rgba(255,217,85,.72);
  border-radius:999px;
  padding:8px 12px;
  font-size:.8rem;
  color:rgba(255,255,255,.92);
  background:linear-gradient(135deg, rgba(242,91,44,.35), rgba(34,8,78,.34), rgba(0,162,191,.28));
}

.hero__logo{
  display:block;
  width:560px;
  max-width:96%;
  margin:0 auto 24px;
}

.statement{text-align:center; max-width:78ch; margin:0 auto}
.divider{height:1px; background:var(--line); margin-top:34px}

.two-col{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:28px;
  margin-top:26px;
}
.list-clean{margin:0; padding:0; list-style:none}
.list-clean li{
  padding:12px 0;
  border-bottom:1px solid var(--line);
  color:rgba(19,33,29,.88);
  font-size:1.12rem;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
  margin-top:24px;
}
.step{
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow-sm);
}
.step .num{
  color:var(--logo-orange);
  font-size:.74rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}
.step h3{margin-top:8px}

.split__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.split__media img{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.5);
  box-shadow:var(--shadow-md);
}
.split__actions{margin-top:16px}
.split--embedded{
  margin:30px 0 28px;
}
.about-inline-media{
  margin:26px 0 24px;
}
.about-inline-media img{
  width:100%;
  max-width:820px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.5);
  box-shadow:var(--shadow-md);
}
.about-inline-media--right{
  float:right;
  width:min(46%, 460px);
  margin:6px 0 18px 26px;
}
.about-inline-media--right img{
  max-width:100%;
}
.about-clear{
  clear:both;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}
.gallery-item{
  margin:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .26s ease, box-shadow .26s ease;
}
.gallery-item:hover{transform:translateY(-4px); box-shadow:var(--shadow-md)}
.gallery-item img{width:100%; aspect-ratio:4/3; object-fit:cover}
.gallery-item figcaption{padding:12px 14px; font-size:.9rem}
.gallery-link{display:block}

.gallery-grid--all{
  display:block;
  margin-top:0;
}
.gallery-grid--all:after{
  content:"";
  display:block;
  clear:both;
}
.gallery-grid--all .grid-sizer,
.gallery-grid--all .gallery-item{
  width:calc(25% - 8px);
  float:left;
}
.gallery-grid--all .gutter-sizer{
  width:10px;
}
.gallery-item--bare{
  border:0;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  margin-bottom:10px;
}
.gallery-item--bare:hover{
  transform:none;
  box-shadow:none;
}
.gallery-item--bare.is-hidden{
  display:none !important;
}
.gallery-loadmore{
  margin-top:20px;
  text-align:center;
}
.gallery-grid--all .gallery-item img{
  aspect-ratio:auto;
  height:auto;
  object-fit:contain;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:120;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(8,12,11,.88);
}
.lightbox[hidden]{display:none}
.lightbox__image{
  max-width:min(1200px, 96vw);
  max-height:90vh;
  width:auto;
  height:auto;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 24px 80px rgba(0,0,0,.50);
}
.lightbox__close{
  position:absolute;
  top:14px;
  right:16px;
  width:44px;
  height:44px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}
.lightbox__close:hover{background:rgba(255,255,255,.24)}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.lightbox__prev{left:18px}
.lightbox__next{right:18px}
.lightbox__nav:hover{background:rgba(255,255,255,.24)}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}

.grid--masonry{
  display:block;
}
.grid--masonry:after{
  content:"";
  display:block;
  clear:both;
}
.grid--masonry .grid-sizer,
.grid--masonry .panel{
  width:calc(50% - 9px);
  float:left;
}
.grid--masonry .gutter-sizer{
  width:18px;
}
.grid--masonry .panel{
  margin-bottom:18px;
}
.panel{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-sm);
}
.panel--media{
  padding:0;
  overflow:hidden;
}
.panel--media img{
  display:block;
  width:100%;
  height:auto;
}
.panel ul{margin:0; padding-left:20px}
.panel li{margin:6px 0; color:rgba(19,33,29,.85)}

.notice{
  margin-top:16px;
  border:1px solid rgba(244,123,32,.30);
  background:rgba(247,197,44,.15);
  border-radius:14px;
  padding:12px 14px;
  color:rgba(19,33,29,.88);
}
.service-custom-callout{
  margin-top:22px;
  padding:16px 18px;
  border-left:6px solid #f47b20;
  border-radius:12px;
  background:linear-gradient(90deg, rgba(247,197,44,.22), rgba(244,123,32,.10));
  color:#18231f;
  font-size:1.08rem;
  font-weight:700;
  line-height:1.55;
  box-shadow:0 8px 22px rgba(19,33,29,.08);
}

.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{display:block; font-weight:600; color:var(--ink)}
input, textarea, select{
  width:100%;
  border:1px solid var(--line-strong);
  border-radius:12px;
  padding:12px;
  margin-top:5px;
  font:inherit;
  font-size:16px;
  background:#fff;
}
textarea{resize:vertical}
input:focus, textarea:focus, select:focus{
  outline:2px solid rgba(255,138,47,.28);
  border-color:rgba(36,6,72,.66);
}

.page-header{
  position:relative;
  padding:108px 0 72px;
  color:#fff;
  overflow:hidden;
  background:
    radial-gradient(900px 400px at 75% 0%, rgba(255,138,47,.16), transparent 72%),
    linear-gradient(180deg, rgba(16,7,32,.40), rgba(16,7,32,.84));
}
.page-header:before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.42;
}
.page-header:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16,7,32,.30), rgba(16,7,32,.58));
}
.page-header .container{position:relative; z-index:1}
.page-header__title-row{
  display:flex;
  align-items:center;
  gap:16px;
}
.page-header__badge{
  width:clamp(82px, 10vw, 132px);
  margin:0;
  flex:0 0 auto;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.35));
}
.page-header h1{
  font-family:'Archivo Black', 'League Spartan', sans-serif;
  font-size:clamp(2.2rem, 5.8vw, 4.6rem);
  letter-spacing:.005em;
  line-height:1.03;
  color:rgba(255,255,255,.98);
  text-shadow:0 4px 20px rgba(0,0,0,.50);
  margin:0;
}
.header--wedding:before,
.header--table:before{
  background-image:image-set(
    url("../img/summerland-beach-hero-background-1800.webp") type("image/webp"),
    url("../img/summerland-beach-hero-background-1800.jpg") type("image/jpeg")
  );
}

.cta{
  position:relative;
  overflow:hidden;
  border-radius:0;
  margin-top:60px;
  padding:142px 24px 96px;
  color:#fff;
  text-align:center;
  background:
    radial-gradient(900px 400px at 75% 0%, rgba(255,138,47,.16), transparent 72%),
    linear-gradient(180deg, rgba(16,7,32,.40), rgba(16,7,32,.84)),
    image-set(
      url("../img/summerland-beach-hero-background-1800.webp") type("image/webp"),
      url("../img/summerland-beach-hero-background-1800.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  box-shadow:var(--shadow-md);
}
.section .cta{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.cta__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(16,7,32,.12), rgba(16,7,32,.34));
}
.cta h2,
.cta p,
.cta__actions{
  position:relative;
  z-index:1;
  color:#fff;
  margin-left:auto;
  margin-right:auto;
  max-width:760px;
  text-shadow:0 3px 14px rgba(0,0,0,.55);
}
.cta__anniversary{
  position:relative;
  z-index:1;
  width:clamp(128px, 16vw, 196px);
  margin:0 auto 18px;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.42));
}
.cta h2,
.cta p{
  padding-inline:14px;
}
.cta h2{
  font-size:clamp(2rem, 5.2vw, 4rem);
  line-height:1.03;
  color:rgba(255,255,255,.98);
  text-shadow:0 4px 20px rgba(0,0,0,.50);
}
.cta p{
  font-weight:500;
  line-height:1.6;
  color:rgba(255,255,255,.90);
  font-size:clamp(1.04rem, 1.9vw, 1.22rem);
  text-shadow:0 3px 14px rgba(0,0,0,.44);
}
.cta__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:24px;
  flex-wrap:wrap;
}

.footer{
  margin-top:0;
  position:relative;
  overflow:hidden;
  background:linear-gradient(95deg, #14082b, #240648 58%, #331060);
  color:#ebe8ff;
}
.footer:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(1200px 500px at 8% 0%, rgba(255,138,47,.16), transparent 56%);
  opacity:1;
  pointer-events:none;
}
.footer:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(20,8,43,.36), rgba(36,6,72,.20) 48%, rgba(20,8,43,.34));
  pointer-events:none;
}
.footer__inner{
  position:relative;
  z-index:1;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:44px 0;
}
.footer .small{color:rgba(235,232,255,.72)}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{
  padding:8px 10px;
  border-radius:999px;
  color:#f4f1ff;
}
.footer__links a:hover{
  background:rgba(242,91,44,.28);
  color:#fff8df;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(12px)}
  to{opacity:1; transform:translateY(0)}
}
.hero__logo,
.hero .eyebrow,
.hero h1,
.hero .lead,
.hero__actions,
.hero__meta{animation:fadeUp .75s ease both}
.hero .eyebrow{animation-delay:.03s}
.hero h1{animation-delay:.08s}
.hero .lead{animation-delay:.14s}
.hero__actions{animation-delay:.20s}
.hero__meta{animation-delay:.26s}

@media (max-width: 1200px){
  .gallery-grid--all .grid-sizer,
  .gallery-grid--all .gallery-item{
    width:calc(33.333% - 7px);
  }
}

@media (max-width: 980px){
  .header__inner{
    padding:10px 0;
    align-items:flex-start;
  }
  .nav{
    gap:5px;
    padding:6px;
  }
  .nav a,
  .nav .btn{
    min-height:44px;
    padding:10px 12px;
    font-size:.95rem;
  }

  .hero{padding:82px 0 62px}
  .hero__logo{width:440px}
  .hero{
    background:
      radial-gradient(900px 400px at 75% 0%, rgba(255,138,47,.16), transparent 72%),
      linear-gradient(180deg, rgba(16,7,32,.40), rgba(16,7,32,.84)),
      image-set(
        url("../img/summerland-beach-hero-background-960.webp") type("image/webp"),
        url("../img/summerland-beach-hero-background-960.jpg") type("image/jpeg")
      ) center 50% / cover no-repeat;
  }
  .header--wedding:before,
  .header--table:before{
    background-image:image-set(
      url("../img/summerland-beach-hero-background-960.webp") type("image/webp"),
      url("../img/summerland-beach-hero-background-960.jpg") type("image/jpeg")
    );
  }
  .cta{
    background:
      linear-gradient(100deg, rgba(14,6,29,.60), rgba(14,6,29,.36) 48%, rgba(14,6,29,.56)),
      image-set(
        url("../img/summerland-beach-hero-background-960.webp") type("image/webp"),
        url("../img/summerland-beach-hero-background-960.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .split__grid,
  .two-col,
  .grid,
  .form-row{grid-template-columns:1fr}

  .grid--masonry .grid-sizer,
  .grid--masonry .panel{
    width:100%;
  }
  .grid--masonry .gutter-sizer{
    width:0;
  }

  .gallery-grid--all .grid-sizer,
  .gallery-grid--all .gallery-item{
    width:calc(50% - 5px);
  }

  .steps{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-template-columns:repeat(2, minmax(0,1fr))}

  .section{padding:76px 0}
  .section--tight{padding:58px 0}
  .page-header{padding:86px 0 58px}
  .page-header__title-row{gap:12px}
  .page-header__badge{width:clamp(72px, 13vw, 106px)}
}

@media (max-width: 768px){
  .header__inner{
    min-height:74px;
    flex-wrap:wrap;
    align-items:stretch;
    gap:8px;
    padding:10px 0;
  }
  .brand{
    flex:1 1 100%;
    width:100%;
    align-items:center;
  }
  .brand__logo{
    width:100%;
    max-width:100%;
  }
  .brand__tag{display:none}
  .header__mobile-actions{
    display:flex;
    align-items:center;
    width:100%;
    justify-content:flex-end;
    gap:8px;
  }
  .header__quote{
    display:inline-flex;
    white-space:nowrap;
  }
  .header__menu-toggle{
    margin-left:auto;
    display:inline-flex;
  }
  .nav__quote{display:none}
  .nav{
    order:3;
    width:100%;
    justify-content:center;
    gap:8px;
    padding:8px;
    overflow:hidden;
    max-height:0;
    opacity:0;
    transform:translateY(-4px);
    transition:max-height .22s ease, opacity .18s ease, transform .18s ease, padding .18s ease, margin .18s ease, border-color .18s ease;
    margin:0;
    padding-top:0;
    padding-bottom:0;
    border-color:transparent;
    pointer-events:none;
  }
  .nav a,
  .nav .btn{
    flex:1 1 calc(50% - 8px);
    text-align:center;
    min-height:44px;
  }
  .header--menu-open .nav{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    margin-top:4px;
    max-height:380px;
    opacity:1;
    transform:translateY(0);
    padding-top:8px;
    padding-bottom:8px;
    border-color:rgba(255,255,255,.20);
    pointer-events:auto;
  }
  .header--menu-open .nav a{
    flex:none;
    width:100%;
    text-align:left;
    padding:11px 12px;
  }
}

@media (max-width: 680px){
  .hero{padding:72px 0 54px}
  .hero__logo{width:330px}
  .hero__actions,
  .cta__actions{
    width:100%;
  }
  .hero__actions .btn,
  .cta__actions .btn{
    width:100%;
    max-width:360px;
  }
  .cta__actions{
    border:0;
    background:transparent;
    padding:0;
  }

  .steps,
  .gallery-grid{grid-template-columns:1fr}

  .gallery-grid--all .grid-sizer,
  .gallery-grid--all .gallery-item{
    width:100%;
  }
  .gallery-grid--all .gutter-sizer{
    width:0;
  }

  .cta{padding:102px 18px 74px;}
  .lightbox{padding:16px}
  .lightbox__prev{left:8px}
  .lightbox__next{right:8px}
  .lightbox__nav{
    width:42px;
    height:42px;
    font-size:24px;
  }
  .page-header__title-row{
    gap:10px;
  }
  .page-header h1{
    font-size:clamp(1.9rem, 10vw, 3rem);
  }
  .footer__inner{
    align-items:flex-start;
    padding:34px 0;
  }
  .footer__links a{
    min-height:44px;
    display:inline-flex;
    align-items:center;
  }
  .btn--send-request{
    width:100%;
  }

  .about-inline-media--right{
    float:none;
    width:100%;
    margin:18px 0;
  }
}
