:root {
  --bg: #faf7f1;            /* white sand */
  --panel: #ffffff;
  --ink: #142c47;           /* dusk navy */
  --muted: rgba(20, 44, 71, 0.72);
  --line: rgba(20, 44, 71, 0.14);
  --ocean: #0077b6;         /* ocean blue */
  --coral: #ff5a5f;         /* sunset coral */
  --sunset: #ff8c42;        /* sunset orange */
  --gold: #f2a03d;          /* golden hour */
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  align-items: center;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}
.brand {
  font-family: Anton, Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 22px; justify-content: center; }
.site-nav a, .site-footer a { color: var(--muted); font-size: 13px; font-weight: 800; }
.site-nav a:hover, .site-footer a:hover { color: var(--ocean); }
.header-cta, .button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}
.header-cta, .button.primary { background: linear-gradient(120deg, var(--coral), var(--sunset)); color: #fff; }
.header-cta:hover, .button.primary:hover { filter: brightness(1.05); }
.button.secondary { border: 1px solid var(--ink); color: var(--ink); }
.nav-toggle { background: transparent; border: 0; display: none; height: 42px; width: 42px; }
.nav-toggle span { background: var(--ink); display: block; height: 2px; margin: 6px auto; width: 24px; }

.split-section, .work-section, .projects-section, .notes-section, .contact-section, .brands-section, .doors-section, .quotes-section, .site-footer {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}
.hero {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 81px);
  overflow: hidden;
  padding-bottom: 64px;
  padding-top: 64px;
  position: relative;
  width: 100%;
  isolation: isolate;
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) 420px;
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.hero-embed {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.hero-beach {
  background: linear-gradient(
    180deg,
    #0f6fd6 0%,
    #1a8ce4 16%,
    #21b7de 30%,
    #52d4dc 40%,
    #aeeae4 47%,
    #ffffff 54%,
    #fbf6ec 72%,
    #f7f0e2 100%
  );
}
.hero-embed video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.hero-embed iframe {
  border: 0;
  height: max(100%, 56.25vw);
  left: 50%;
  min-height: 100%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.25);
  width: max(100vw, 177.78vh);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(72, 199, 212, .62) 0%, rgba(103, 213, 222, .38) 44%, rgba(140, 226, 232, .08) 100%),
    linear-gradient(180deg, rgba(96, 209, 219, .2) 0%, rgba(120, 218, 226, .06) 40%, rgba(250, 247, 241, .95) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}
h1, h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 0.98;
  margin: 0 0 22px;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(52px, 6.2vw, 92px); max-width: 860px; }
h2 { font-size: clamp(42px, 5vw, 68px); }
.gradient-text {
  /* light backgrounds: deeper ramp so the word never washes out on sand */
  background: linear-gradient(100deg, #e8433f 0%, var(--coral) 40%, #f26a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-copy .gradient-text {
  /* bright beach hero: deeper ramp for contrast against sky and sand */
  background: linear-gradient(100deg, #e8433f 0%, var(--coral) 40%, #f26a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
h3, p { margin-top: 0; }
h3 { font-family: Inter, sans-serif; font-weight: 900; }
.hero-copy p, .copy-block p, .section-head p, .contact-copy p { color: var(--muted); font-size: 19px; max-width: 680px; }
.hero-copy {
  max-width: 860px;
  position: relative;
}
.hero-copy h1 { color: var(--ink); }
.hero-copy p { color: rgba(20, 44, 71, 0.85); }
.copy-block a { color: var(--ocean); font-weight: 800; }
.copy-block a:hover { color: var(--coral); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-portrait {
  background: linear-gradient(135deg, rgba(255, 90, 95, .55), rgba(242, 160, 61, .4));
  border: 1px solid rgba(20, 44, 71, .18);
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  position: relative;
}
.hero-portrait img { aspect-ratio: 1; border-radius: 6px; height: 100%; object-fit: cover; width: 100%; }

.proof-strip {
  background: var(--ink);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-strip div { border-right: 1px solid rgba(255, 255, 255, .14); padding: 26px; text-align: center; }
.proof-strip strong {
  background: linear-gradient(100deg, var(--coral), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}
.proof-strip span { color: rgba(255, 255, 255, .72); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.split-section, .notes-section, .contact-section {
  display: grid;
  gap: 44px;
  grid-template-columns: .9fr 1.1fr;
  padding-bottom: 96px;
  padding-top: 96px;
}
.work-section, .projects-section, .brands-section, .doors-section, .quotes-section { padding-bottom: 96px; padding-top: 96px; }
.quotes-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}
.quotes-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 44, 71, 0.06);
  padding: 20px;
}
.quote-author { align-items: center; display: flex; gap: 10px; margin-bottom: 10px; }
.quote-author img { border-radius: 50%; height: 36px; object-fit: cover; width: 36px; }
.quote-author strong { font-size: 14px; }
.quotes-grid p { color: var(--muted); font-size: 14px; margin: 0; }
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.brand-grid img {
  aspect-ratio: 1 / 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 44, 71, 0.06);
  flex: 0 0 calc((100% - 6 * 14px) / 7);
  height: auto;
  min-width: 0;
  object-fit: contain;
  padding: 18px;
}
.doors-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.doors-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 44, 71, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px;
}
.doors-grid h3 { font-size: 20px; }
.doors-grid p { color: var(--muted); flex: 1; }
.doors-grid .button { margin-top: 8px; }
.section-head { margin-bottom: 34px; }
.work-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
.work-grid article, .project-list a, .notes-grid article, .contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 44, 71, 0.06);
  padding: 26px;
}
.project-list a:hover { border-color: var(--coral); box-shadow: 0 10px 28px rgba(255, 90, 95, 0.16); }
.work-grid p, .project-list span, .notes-grid p { color: var(--muted); }
.project-list { display: grid; gap: 12px; }
.project-list a { align-items: center; display: grid; gap: 18px; grid-template-columns: 260px 1fr; }
.project-list strong { color: var(--ocean); font-family: Inter, sans-serif; font-size: 20px; font-weight: 900; }
.notes-grid { display: grid; gap: 14px; }
.notes-grid span {
  background: linear-gradient(100deg, var(--coral), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
}

.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
label { display: grid; font-size: 13px; font-weight: 800; gap: 8px; margin-bottom: 14px; }
input, textarea {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 50px;
  outline: 0;
  padding: 12px 13px;
  width: 100%;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(0, 119, 182, .16); }
.form-status { color: var(--muted); font-weight: 800; min-height: 22px; }
.form-status.success { color: #0a8754; }
.form-status.error { color: #d64545; }
.site-footer { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 24px; justify-content: space-between; padding-bottom: 42px; padding-top: 42px; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer strong { font-family: Anton, Impact, sans-serif; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: auto auto; }
  .site-nav, .header-cta { display: none; }
  .site-nav.is-open {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: grid;
    left: 0;
    padding: 16px 20px 24px;
    position: absolute;
    right: 0;
    top: 75px;
  }
  .nav-toggle { display: block; justify-self: end; }
  .hero-inner, .split-section, .notes-section, .contact-section { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 460px; }
  .work-grid, .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-grid img { flex-basis: calc((100% - 3 * 14px) / 4); }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .doors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(44px, 12vw, 60px); }
  h2 { font-size: clamp(36px, 10vw, 50px); }
  .hero-actions, .site-footer { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .work-grid, .proof-strip, .form-grid { grid-template-columns: 1fr; }
  .brand-grid img { flex-basis: calc((100% - 2 * 14px) / 3); }
  .quotes-grid { grid-template-columns: 1fr; }
  .proof-strip div { border-bottom: 1px solid rgba(255, 255, 255, .14); border-right: 0; }
}
