@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --text: #101114;
  --muted: #686b73;
  --surface: #f5f6f8;
  --line: #e3e5e8;
  --accent: #111318;
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 36px), var(--max));
  min-height: 72px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-radius: 999px;
}
.brand img { width: 125px; max-height: 50px; object-fit: contain; }
.nav { display: flex; gap: 8px; }
.nav a { padding: 10px 15px; border-radius: 999px; font-size: .92rem; }
.nav a:hover { background: var(--surface); }
.menu-toggle { display:none; border:0; background:transparent; font-size:1.5rem; }

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
}
.hero-image, .hero-overlay { position:absolute; inset:0; }
.hero-image {
  background-position:center;
  background-size:cover;
  transform: scale(1.03);
}
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.16) 75%, rgba(0,0,0,.35)); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  padding-top: 80px;
}
.eyebrow { letter-spacing: .18em; font-size:.75rem; font-weight:700; margin:0 0 14px; opacity:.75; }
.hero h1 { font-size: clamp(3.5rem, 9vw, 8rem); line-height:.92; letter-spacing:-.06em; margin:0; max-width:850px; }
.hero-text { max-width:560px; font-size:clamp(1rem,2vw,1.25rem); opacity:.86; margin:28px 0; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; padding:13px 21px; border-radius:999px; font-weight:600; border:1px solid rgba(255,255,255,.35); }
.btn.primary { background:#fff; color:#111; border-color:#fff; }
.btn.ghost { color:#fff; background:rgba(255,255,255,.08); backdrop-filter:blur(10px); }

.section { width:min(var(--max),calc(100% - 48px)); margin:auto; padding:110px 0; }
.intro { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:end; }
h2 { font-size:clamp(2.2rem,5vw,4.5rem); line-height:1; letter-spacing:-.05em; margin:0; }
.lead { font-size:1.2rem; color:var(--muted); max-width:580px; }

.gallery { border-top:1px solid var(--line); }
.section-heading { display:flex; justify-content:space-between; gap:40px; align-items:end; margin-bottom:42px; }
.section-heading > p { color:var(--muted); max-width:330px; }
.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:16px; }
.gallery-grid figure { margin:0; overflow:hidden; border-radius:var(--radius); background:var(--surface); }
.gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(4) { grid-column:span 7; }
.gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(5), .gallery-grid figure:nth-child(6) { grid-column:span 5; }
.gallery-grid img { width:100%; height:100%; min-height:300px; object-fit:cover; transition:transform .6s ease; }
.gallery-grid figure:hover img { transform:scale(1.04); }

.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding-top:40px; }
.card { background:var(--surface); padding:34px; min-height:280px; border-radius:var(--radius); }
.card span { color:var(--muted); font-weight:700; }
.card h3 { font-size:1.45rem; margin:70px 0 10px; }
.card p { color:var(--muted); margin:0; }

.contact { border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:end; gap:30px; }
.contact .primary { background:var(--accent); color:#fff; border-color:var(--accent); }

footer { border-top:1px solid var(--line); padding:30px 24px; color:var(--muted); text-align:center; font-size:.85rem; }

@media (max-width: 760px) {
  .site-header { top:10px; width:calc(100% - 20px); }
  .nav {
    display:none; position:absolute; top:70px; left:0; right:0; padding:12px;
    background:#fff; border-radius:24px; flex-direction:column; box-shadow:0 15px 35px rgba(0,0,0,.12);
  }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero { min-height:88vh; }
  .hero-content { width:calc(100% - 32px); }
  .section { width:calc(100% - 32px); padding:75px 0; }
  .intro, .cards { grid-template-columns:1fr; gap:35px; }
  .section-heading, .contact { display:block; }
  .section-heading > p { margin-top:20px; }
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-grid figure, .gallery-grid figure:nth-child(n) { grid-column:span 1; }
  .gallery-grid img { min-height:230px; }
  .contact .btn { margin-top:28px; }
}

.youtube {
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto 40px;
  padding:70px;
  border-radius:var(--radius);
  background:#111318;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  overflow:hidden;
}
.youtube-copy { max-width:720px; }
.youtube-copy p:not(.eyebrow) { color:rgba(255,255,255,.72); max-width:600px; margin:24px 0 28px; }
.btn.dark { background:#fff; color:#111; border-color:#fff; }
.youtube-mark {
  width:160px; height:160px; border:1px solid rgba(255,255,255,.25);
  border-radius:50%; display:grid; place-items:center; font-size:3rem; flex:none;
}
.social-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:10px; max-width:650px; }
.social-links a, .footer-social a {
  border:1px solid var(--line); padding:11px 16px; border-radius:999px;
  font-size:.9rem; transition:all .25s ease;
}
.social-links a:hover, .footer-social a:hover { background:var(--text); color:#fff; border-color:var(--text); }
.footer-social { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-top:14px; }
.footer-social a { padding:7px 11px; font-size:.78rem; }
@media (max-width:760px) {
  .youtube { width:calc(100% - 32px); padding:42px 28px; display:block; }
  .youtube-mark { width:100px; height:100px; margin-top:36px; font-size:2rem; }
  .social-links { justify-content:flex-start; margin-top:28px; }
}

.center-action{text-align:center;margin-top:2rem}.section-callout,.feedback-callout{text-align:center}
.page-hero{text-align:center;padding-top:5rem}.page-hero h1{font-size:clamp(2.5rem,6vw,5rem);margin:.2em 0}
.full-gallery{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.full-gallery-item{display:block;aspect-ratio:1/1;overflow:hidden;border-radius:18px;background:#eee}
.full-gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}.full-gallery-item:hover img{transform:scale(1.04)}
.feedback-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}
.feedback-card{background:#fff;border:1px solid #e5e5e5;border-radius:24px;padding:28px;box-shadow:0 15px 40px rgba(0,0,0,.05)}
.feedback-card form{display:grid;gap:12px}.feedback-card input[type=text],.feedback-card textarea{width:100%;padding:13px;border:1px solid #ccc;border-radius:14px;font:inherit;box-sizing:border-box}
.rating-fieldset{border:0;padding:0;margin:.35rem 0}.star-picker{display:inline-flex;flex-direction:row-reverse;justify-content:flex-end}.star-picker input{position:absolute;opacity:0}.star-picker label{font-size:2.2rem;color:#ccc;cursor:pointer}
.star-picker label:hover,.star-picker label:hover~label,.star-picker input:checked~label{color:#f2b01e}
.average-wrap{display:flex;align-items:baseline;gap:10px}.average-wrap strong{font-size:3rem}
.rating-rows{display:grid;gap:10px;margin-top:1.5rem}.rating-row{display:grid;grid-template-columns:55px 1fr 30px;gap:10px;align-items:center}
.rating-bar{height:10px;background:#eee;border-radius:999px;overflow:hidden}.rating-bar span{display:block;height:100%;background:#f2b01e;border-radius:999px}
.comments-list{display:grid;gap:16px}.comment-card{background:#fff;border:1px solid #e5e5e5;border-radius:20px;padding:20px}.comment-top{display:flex;justify-content:space-between;gap:15px}.comment-stars{color:#f2b01e}.comment-card time,.muted{opacity:.65}.form-message{min-height:1.5em}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}.site-nav .active{font-weight:700}
@media(max-width:900px){.full-gallery{grid-template-columns:repeat(3,1fr)}}
@media(max-width:720px){.full-gallery{grid-template-columns:repeat(2,1fr);gap:10px}.feedback-layout{grid-template-columns:1fr}}


/* Version 4: latest YouTube videos */
.youtube-latest .section-heading {
  max-width:760px;
  margin-bottom:28px;
}
.youtube-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.youtube-card {
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
}
.youtube-thumb {
  display:block;
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.youtube-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .3s ease;
}
.youtube-thumb:hover img { transform:scale(1.035); }
.youtube-play {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:58px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(255,0,0,.92);
  color:#fff;
  font-size:22px;
  padding-left:3px;
  box-shadow:0 8px 25px rgba(0,0,0,.28);
}
.youtube-card-body { padding:16px 18px 19px; }
.video-label {
  margin:0 0 5px;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.6;
}
.video-title {
  font-weight:700;
  text-decoration:none;
}
.video-title:hover { text-decoration:underline; }

@media(max-width:900px){
  .youtube-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:600px){
  .youtube-grid { grid-template-columns:1fr; }
}

/* Version 5: compact YouTube thumbnails directly below channel link */
.youtube-heading {
  margin-bottom:14px !important;
}
.youtube-main-link {
  margin-top:10px;
  margin-bottom:4px;
}
.youtube-latest .youtube-grid {
  margin-top:12px;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:12px;
  max-width:980px;
}
.youtube-latest .youtube-card {
  border-radius:14px;
}
.youtube-latest .youtube-thumb {
  aspect-ratio:16/9;
}
.youtube-latest .youtube-play {
  width:42px;
  height:30px;
  border-radius:8px;
  font-size:15px;
}
.youtube-latest .youtube-card-body {
  padding:10px 12px 12px;
}
.youtube-latest .video-label {
  font-size:.68rem;
}
.youtube-latest .video-title {
  font-size:.86rem;
}

@media(max-width:900px){
  .youtube-latest .youtube-grid {
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}
@media(max-width:600px){
  .youtube-latest .youtube-grid {
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
