/* Kue King Sculpture - Static Site Styles */
/* Original kueking.com renders Open Sans for everything */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, input, textarea, select, .btn, .btn-submit { border-radius: 0; -webkit-appearance: none; appearance: none; }
img { border-radius: 0; }

:root {
  --black: #000;
  --dark: #111;
  --dark-gray: #222;
  --mid-gray: #666;
  --light-gray: #ccc;
  --white: #fff;
  --accent: #2ea3f2;
  --font: 'Open Sans', Arial, sans-serif;
  --font-heading: 'Open Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7em;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--white); text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; line-height: 1em; letter-spacing: 0; padding-bottom: 10px; }
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

.container { width: 80%; max-width: 1080px; margin: 0 auto; padding: 0 30px; }
.text-center { text-align: center; }

/* ─── WHITE PAGE VARIANT ─── */
body.page-light {
  color: #666;
  background: #fff;
  font-weight: 500;
}

body.page-light a { color: #2ea3f2; }

body.page-light .site-header {
  background: #000;
  border-bottom: none;
}
body.page-light .header-top { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.page-light .header-top a { color: #fff; }
body.page-light .main-nav li a { color: #fff; }
body.page-light .nav-toggle span { background: #fff; }

body.page-light .content-section { background: #fff; }
body.page-light .content-section.alt { background: #f8f8f8; }
body.page-light .content-section p { color: #666; opacity: 1; }
body.page-light .content-section h2,
body.page-light .content-section h3 { color: #333; }

body.page-light blockquote {
  border-left: 2px solid #ddd;
  color: #555;
}

body.page-light .form-group input,
body.page-light .form-group textarea {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}
body.page-light .form-group label { color: #333; }

body.page-light .btn-submit {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}
body.page-light .btn-submit:hover { background: #3a3a3a; color: #fff; }

body.page-light .btn {
  border-color: #333;
  color: #333;
}
body.page-light .btn:hover { background: #333; color: #fff; }

body.page-light .site-footer {
  background: #000;
  color: #fff;
}
body.page-light .site-footer a { color: #fff; }
body.page-light .site-footer .footer-copy { color: #fff; }

body.page-light .contact-section {
  background: #f5f5f5;
}
body.page-light .contact-info a { color: #333; border-bottom-color: #ccc; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  transition: background 0.3s;
}

.site-header.transparent {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 30px;
  font-size: 0.8rem;
  color: var(--light-gray);
  gap: 20px;
}

.header-top a { color: var(--light-gray); }

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
}

.logo img { height: 49px; }

.nav-toggle { display: none; cursor: pointer; padding: 10px; background: none; border: none; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

.main-nav { display: flex; gap: 25px; list-style: none; }
.main-nav li a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 5px 0;
}
.main-nav li a:hover,
.main-nav li a.active { color: #c6c6c6; opacity: 1; }

.header-contact {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  color: #fff;
}
.header-contact a { color: #fff; }

@media (max-width: 1100px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; right: 0; left: auto; width: auto; min-width: 250px; background: rgba(0,0,0,0.95); padding: 20px 30px; gap: 15px; text-align: right; align-items: flex-end; }
  body.page-light .main-nav { background: rgba(0,0,0,0.95); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .logo { flex-shrink: 0; }
  .header-contact { display: flex; flex-direction: column; gap: 2px; font-size: 0.75rem; text-align: left; margin-left: auto; margin-right: 8px; order: 2; }
  .header-contact .contact-icon { display: none; }
  .nav-toggle { order: 3; }
  .main-nav { order: 4; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 30px 60px;
}

.hero h1 { margin-bottom: 15px; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
.hero h2 {
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  margin-bottom: 40px;
}

.hero .icon-symbol { width: 50px; margin: 0 auto 20px; }

/* ─── SCHEDULE DATES (inside hero) ─── */
.schedule-dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 25px;
  margin-top: 30px;
}

.schedule-dates .date-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.85;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.schedule-dates .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.schedule-dates .dot.gold { background: #d4a843; }
.schedule-dates .dot.teal { background: #5bbcb4; }
.schedule-dates .dot.coral { background: #e07060; }
.schedule-dates .dot.blue { background: #5b8fd4; }

/* ─── EXPERIENCE CARDS ─── */
.experience-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.experience-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.exp-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.exp-card.full-width { height: 550px; }

.exp-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-card-bg { transform: scale(1.05); }

.exp-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s;
}

.exp-card:hover .exp-card-overlay { background: rgba(0,0,0,0.3); }

.exp-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.exp-card-content .icon-symbol { width: 40px; margin: 0 auto 15px; }
.exp-card-content h2 { font-size: 1.8rem; margin-bottom: 8px; }
.exp-card-content h3 { font-size: 1.1rem; font-style: italic; font-weight: 300; margin-bottom: 20px; }

.btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.btn:hover { background: var(--white); color: var(--black); opacity: 1; }

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 80px 0;
  background: var(--black);
}

.about-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 50px;
}

.about-images img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 80px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 30px; }
.contact-info p { font-weight: 300; margin-bottom: 15px; opacity: 0.9; }
.contact-info a { border-bottom: 1px solid rgba(255,255,255,0.3); }

.contact-form h3 { margin-bottom: 20px; }
.contact-form p { font-weight: 300; font-size: 0.95rem; margin-bottom: 25px; opacity: 0.8; }

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--white); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  display: inline-block;
  padding: 10px 16px;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover { background: #3a3a3a; color: #fff; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero .hero-bg { background-size: cover; background-position: center; }

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 30px;
}

/* Light page hero - no bg image, just text */
body.page-light .page-hero {
  min-height: auto;
  padding: 40px 0 20px;
  background: #fff;
}
body.page-light .page-hero h1 { color: #333; font-size: 30px; }
body.page-light .page-hero h2 { color: #666; }

/* Page hero with background image */
body.page-light .page-hero.has-bg {
  min-height: 60vh;
  padding: 0;
  background: transparent;
}
body.page-light .page-hero.has-bg h1 { color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
body.page-light .page-hero.has-bg h2 { color: rgba(255,255,255,0.9); text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }

/* ─── CONTENT SECTIONS ─── */
.content-section {
  padding: 4% 0;
}

.content-section.dark { background: var(--dark); }
.content-section.black { background: var(--black); }

.content-section p {
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 1em;
  opacity: 0.9;
}
.content-section p:last-child { padding-bottom: 0; }

.content-section h2 { margin-bottom: 20px; padding-bottom: 0; }
.content-section h3 { margin-bottom: 10px; padding-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ─── BLOCKQUOTE ─── */
blockquote {
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  border-left: 3px solid rgba(255,255,255,0.3);
  padding: 20px 30px;
  margin: 30px 0;
  opacity: 0.9;
}

blockquote cite {
  display: block;
  margin-top: 15px;
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.7;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ─── IMAGE CAROUSEL / SLIDER ─── */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
}

.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.carousel-dots .dot.active { background: #666; }

body.page-light .carousel-btn { background: rgba(0,0,0,0.4); }
body.page-light .carousel-btn:hover { background: rgba(0,0,0,0.7); }

/* ─── IMAGE ROW ─── */
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin: 40px 0;
}

.image-row img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ─── CONTACT BLOCK (inner pages) ─── */
body.page-light .contact-block {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}
body.page-light .contact-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: url('../images/bg-symbol-white.png') no-repeat center;
  background-size: contain;
  filter: brightness(0) opacity(0.08);
  pointer-events: none;
}

/* ─── CONTACT HOME (shared across pages) ─── */
.contact-home {
  background: #fff;
  padding: 10% 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-home::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: url('../images/bg-symbol-white.png') no-repeat center;
  background-size: contain;
  filter: brightness(0) opacity(0.08);
  pointer-events: none;
}
.contact-home-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.contact-home h2 {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
  padding-bottom: 0;
  letter-spacing: 1px;
}
.contact-home h3 {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: #000;
  padding: 10px 0 40px 0;
  margin: 0;
  letter-spacing: 1px;
}
.contact-home p {
  color: #000;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
}
.contact-home a {
  color: #000;
  text-decoration: none;
  border-bottom: none;
}
.contact-home a:hover { text-decoration: underline; opacity: 1; }

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}
.contact-home-grid .contact-info-col { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.contact-home-grid .contact-info-col h2 { font-size: 24px; font-weight: 500; color: #000; margin-bottom: 0; padding-bottom: 0; letter-spacing: 1px; }
.contact-home-grid .contact-info-col h3 { font-size: 16px; font-style: italic; font-weight: 300; color: #000; padding: 10px 0 30px; margin: 0; }
.contact-home-grid .contact-info-col p { color: #000; font-weight: 500; margin-bottom: 8px; font-size: 16px; }
.contact-home-grid .contact-info-col a { color: #000; text-decoration: none; }
.contact-home-grid .contact-info-col a:hover { text-decoration: underline; opacity: 1; }
.contact-home-grid .contact-form-col { display: flex; align-items: center; }
.contact-home-grid .contact-form-col form { width: 100%; }
.contact-home-grid .contact-form-col .form-group input,
.contact-home-grid .contact-form-col .form-group textarea {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}
.contact-home-grid .contact-form-col .form-group label { color: #333; }
.contact-home-grid .contact-form-col .btn-submit {
  display: block;
  margin: 0 auto;
  background: transparent;
  color: #000;
  border: 1px solid #000;
}
.contact-home-grid .contact-form-col .btn-submit:hover { background: #333; color: #fff; }
@media (max-width: 980px) {
  .contact-home-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-home-grid .contact-info-col { text-align: center; }
}

/* ─── FOOTER ─── */
.site-footer {
  background: #000;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.footer-social { margin: 0; }
.footer-social a {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer-social a:hover { opacity: 1; }
.footer-social img { height: 20px; filter: invert(1); }

.footer-links { margin-bottom: 20px; }
.footer-links a {
  margin: 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.footer-copy {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

/* ─── DIVI-STYLE FULL-WIDTH GRID ─── */
.dv { width: 100%; margin: 0 0 -1px; padding: 0; overflow: hidden; }
.dv.c2 { display: grid; grid-template-columns: 1fr 1fr; }
.dv.c3-ssl { display: grid; grid-template-columns: 1fr 1fr 2fr; }
.dv.c3-lss { display: grid; grid-template-columns: 2fr 1fr 1fr; }
.dv.h50 { height: calc(50vw - 8px); }
.dv.h25 { height: calc(25vw - 4px); }
.dv > .cell { overflow: hidden; position: relative; }
.dv > .cell > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dv > .txt {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5% 5%;
}
body.page-light .dv > .txt { color: #666; }
body.page-light .dv > .txt h1 { color: #333; font-size: 30px; font-weight: 500; margin: 0; padding: 20px 0 0; text-align: center; }
body.page-light .dv > .txt h2 { font-size: 16px; font-weight: 300; font-style: italic; color: #666; margin: 0; padding: 8px 0 20px; text-align: center; }
body.page-light .dv > .txt p { color: #666; font-size: 14px; font-weight: 500; line-height: 1.7; margin: 0; padding-bottom: 1em; }
body.page-light .dv > .txt p:last-child { padding-bottom: 0; }
body.page-light.txt-centered .dv > .txt p { text-align: center; }
.dv > .txt-center { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 5%; }
body.page-light .dv > .txt-center h1 { color: #333; }
body.page-light .dv > .txt-center h2,
body.page-light .dv > .txt-center h3 { color: #666; font-size: 16px; font-weight: 300; font-style: italic; padding: 8px 0 20px; margin: 0; }
body.page-light .dv > .txt-center p { color: #666; font-size: 14px; font-weight: 500; line-height: 1.7; margin: 0; padding-bottom: 1em; text-align: left; }
body.page-light .dv > .txt-center p:last-child { padding-bottom: 0; }
.dv .video-wrapper { margin: 0; background: #f0f0f0; }

@media (max-width: 980px) {
  /* all grids collapse to 1-col */
  .dv.c2, .dv.c3-ssl, .dv.c3-lss { grid-template-columns: 1fr; }
  .dv.h50, .dv.h25 { height: auto; }
  .dv.h50 > .cell > img, .dv.h25 > .cell > img { height: 60vw; }
  .dv.c3-ssl > .cell, .dv.c3-lss > .cell { min-height: 60vw; }
  .dv > .txt, .dv > .txt-center { padding: 30px 25px; }
  .dv > .cell .video-wrapper { position: relative !important; height: 0 !important; padding-bottom: 56.25% !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; }
  /* Hawaii: force square video + photo cells */
  .dv > .cell.hawaii-video-cell { aspect-ratio: 1 !important; position: relative !important; }
  .dv > .cell.hawaii-video-cell .video-wrapper { position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; height: 100% !important; padding-bottom: 0 !important; }
  .dv > .cell.hawaii-square-photo { aspect-ratio: 1 !important; }
  .dv > .cell.hawaii-square-photo > img { height: 100% !important; width: 100% !important; object-fit: cover !important; }
  /* Stacked photo cells: each inner image gets its own square */
  .dv > .cell.hawaii-stacked-photos { display: block !important; }
  .hawaii-square-inner { aspect-ratio: 1 !important; overflow: hidden; }
  .hawaii-square-inner img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  body.page-light .dv h1 { font-size: 24px; }
  body.page-light .dv h2 { font-size: 14px; }
  body.page-light .dv > .txt h2 { padding-bottom: 15px; }
  body.page-light .dv p { font-size: 14px; }
  .dv.c2[style*="height:calc(26"] { height: auto !important; }
  .hawaii-image-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; height: auto !important; }
  .hawaii-image-grid > .cell[style*="grid-row"] { grid-row: auto !important; }
  .hawaii-image-grid > .cell[style*="grid-template-columns"] { grid-template-columns: 1fr 1fr !important; }
  /* nav / header — moved to 1100px block below */
  .container { width: 90%; padding: 0 20px; }
  .content-section { padding: 50px 0; }
  .experience-cards-row { grid-template-columns: 1fr; }
  .exp-card { height: 400px; }
  .about-grid, .contact-grid, .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .two-col.reverse > * { direction: ltr; }
  .contact-form-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-images { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .btn-submit { width: 100%; }
}

/* ─── WISTIA VIDEO EMBED ─── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 40px 0;
  background: #f0f0f0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
}

/* ─── RESPONSIVE: 767px ─── */
@media (max-width: 767px) {
  .header-top { display: none; }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .three-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .about-images { grid-template-columns: 1fr; }
  .about-images img { height: 250px; }
}

/* ─── RESPONSIVE: 600px (phone) ─── */
@media (max-width: 600px) {
  .form-group input, .form-group textarea { padding: 12px; }
}
