*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

:root {
  --bg: #0b0b0b;
  --bg-elevated: #141413;
  --bg-panel: #1a1918;
  --border: rgba(255,255,255,0.07);
  --text: #e8e4df;
  --text-secondary: #9a9590;
  --text-muted: #5a5550;
  --accent: #c9a96e;
  --accent-hover: #d4b578;
  --accent-subtle: rgba(201,169,110,0.08);
  --danger: #e84848;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --radius-sm: 4px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

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

/* ── Image protection (prevent save / drag / select) ── */

.gallery-item img,
.lightbox img,
.blog-card-cover img,
.blog-post-cover img,
.blog-figure img,
.blog-inline-img,
.about-image img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.gallery-item,
.lightbox,
.blog-card-cover,
.blog-post-cover,
.blog-figure,
.about-image {
  -webkit-user-select: none;
  user-select: none;
}

/* ── Custom cursor ── */

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, opacity 0.15s;
  mix-blend-mode: difference;
}
.cursor-dot.hovering {
  width: 14px; height: 14px;
  background: var(--accent-hover);
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.25s, border-color 0.3s;
  opacity: 0.4;
}
.cursor-ring.hovering {
  width: 64px; height: 64px;
  opacity: 0.9;
  border-color: var(--accent-hover);
}

/* ── Loader ── */

.loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-bar {
  width: 48px; height: 2px; background: var(--accent); border-radius: 1px;
  animation: pulse 1.2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scaleX(0.4); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* ── Navigation ── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s var(--ease);
}
nav.scrolled {
  padding: 16px 40px;
  background: rgba(11,11,11,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--text); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(201,169,110,0.05), transparent);
}
.hero-content {
  text-align: center; position: relative; z-index: 2; max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.hero-sub {
  margin-top: 24px; font-size: 0.88rem;
  color: var(--text-secondary); letter-spacing: 0.03em; font-weight: 300;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── Section shared ── */

section { padding: 100px 40px; }
.section-label {
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; max-width: 560px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ── Gallery ── */

#work { background: var(--bg-elevated); }

.gallery-filters { display: flex; gap: 12px; margin: 40px 0 48px; flex-wrap: wrap; }
.filter-btn {
  background: none; border: 1px solid transparent; border-radius: 20px;
  color: var(--text-muted); font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; padding: 7px 18px;
  transition: all 0.3s var(--ease);
}
.filter-btn.active,
.filter-btn:hover { color: var(--text); border-color: var(--border); }
.filter-btn.active { color: var(--accent); border-color: var(--accent); background: var(--accent-subtle); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; grid-auto-flow: dense;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm); cursor: pointer;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.gallery-item.visible { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.88);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-meta h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 2px;
}
.gallery-meta span {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
}
.gallery-tags {
  display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px;
}
.gallery-tag {
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(201,169,110,0.15); color: var(--accent);
  padding: 3px 9px; border-radius: 10px;
  border: 1px solid rgba(201,169,110,0.25);
}

.gallery-empty {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
  border: 1px dashed var(--border); border-radius: var(--radius);
}
.gallery-empty p { color: var(--text-muted); font-size: 0.88rem; font-weight: 300; }
.gallery-empty .hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; opacity: 0.6; }

/* ── About ── */

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px; align-items: center;
}
.about-image { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3/4; }
.about-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.about-text p {
  font-size: 0.92rem; line-height: 1.85;
  color: var(--text-secondary); font-weight: 300; margin-bottom: 20px;
}
.about-stats {
  display: flex; gap: 48px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 6px;
}

/* ── Testimonial ── */

.testimonial-section {
  padding: 120px 40px; background: var(--bg-elevated); text-align: center;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 300; font-style: italic; line-height: 1.55;
  max-width: 720px; margin: 0 auto; color: var(--text);
}
.testimonial-quote::before {
  content: '\201C'; display: block; font-size: 4rem;
  color: var(--accent); line-height: 0.5; margin-bottom: 20px; font-style: normal;
}
.testimonial-author {
  margin-top: 28px; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}

/* ── Contact ── */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px;
}
.contact-info p {
  color: var(--text-secondary); font-size: 0.88rem;
  line-height: 1.8; font-weight: 300; margin-bottom: 28px;
}
.contact-link {
  display: block; color: var(--text); text-decoration: none;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  margin-bottom: 10px; transition: color 0.3s;
}
.contact-link:hover { color: var(--accent); }
.contact-socials { display: flex; gap: 20px; margin-top: 40px; }
.contact-socials a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: color 0.3s;
}
.contact-socials a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input,
.contact-form textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  padding: 14px 0; color: var(--text);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 300;
  outline: none; transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--accent); }
.contact-form textarea { resize: none; min-height: 100px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.submit-btn {
  align-self: flex-start;
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 40px; cursor: pointer;
  transition: all 0.3s var(--ease); border-radius: 2px;
}
.submit-btn:hover { background: var(--accent); color: var(--bg); }

/* ── Footer ── */

footer {
  padding: 40px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
}
footer span { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; }
.admin-trigger {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; opacity: 0.3; transition: opacity 0.3s; padding: 4px;
}
.admin-trigger:hover { opacity: 0.7; }
.admin-trigger svg { width: 14px; height: 14px; display: block; }

/* ── Lightbox ── */

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-frame {
  position: relative;
  max-width: 88vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox img {
  max-width: 88vw; max-height: 88vh; object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.92); transition: transform 0.5s var(--ease);
}
.lightbox.active img { transform: scale(1); touch-action: none; }
.lightbox-shield {
  position: absolute; inset: 0; z-index: 1;
  background: transparent;
  touch-action: none;
}
.lightbox-close {
  position: absolute; top: 28px; right: 36px; z-index: 2;
  background: none; border: none; color: var(--text);
  font-size: 1.6rem; cursor: pointer; font-weight: 200;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--accent); }

/* ── Toast ── */

.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-panel); color: var(--text); font-size: 0.8rem;
  padding: 12px 24px; border-radius: var(--radius);
  border: 1px solid var(--border);
  z-index: 9999; opacity: 0;
  transition: all 0.3s var(--ease); pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Reveal animation ── */

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Blog listing ── */

#blog { background: var(--bg); }

.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
}

.blog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.2);
}

.blog-card-cover {
  aspect-ratio: 16/9; overflow: hidden;
}
.blog-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.88);
}
.blog-card:hover .blog-card-cover img {
  transform: scale(1.04); filter: brightness(1);
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.blog-card-dot { opacity: 0.4; }

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 400; line-height: 1.3;
  margin-bottom: 8px; color: var(--text);
}

.blog-card-excerpt {
  font-size: 0.85rem; line-height: 1.65;
  color: var(--text-secondary); font-weight: 300;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  transition: letter-spacing 0.3s var(--ease);
}
.blog-card:hover .blog-card-link { letter-spacing: 0.18em; }

.blog-empty {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
  border: 1px dashed var(--border); border-radius: var(--radius);
}
.blog-empty p { color: var(--text-muted); font-size: 0.88rem; font-weight: 300; }
.blog-empty .hint { font-size: 0.75rem; margin-top: 6px; opacity: 0.6; }

/* ── Blog single post ── */

.blog-back {
  background: none; border: 1px solid var(--border); border-radius: 20px;
  color: var(--text-secondary); font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.1em;
  padding: 8px 20px; cursor: pointer;
  transition: all 0.3s var(--ease); margin-bottom: 40px;
}
.blog-back:hover { border-color: var(--accent); color: var(--accent); }

.blog-post-cover {
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 40px; aspect-ratio: 21/9;
}
.blog-post-cover img {
  width: 100%; height: 100%; object-fit: cover;
}

.blog-post-article { max-width: 680px; margin: 0 auto; }

.blog-post-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}

.blog-post-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 16px;
}

.blog-post-excerpt {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-secondary); font-weight: 300;
  font-style: italic; margin-bottom: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}

.blog-post-body {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--text-secondary); font-weight: 300;
}
.blog-post-body h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--text); margin: 48px 0 16px;
}
.blog-post-body h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--text); margin: 36px 0 12px;
}
.blog-post-body h4 {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text); margin: 28px 0 10px;
  letter-spacing: 0.02em;
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body strong { color: var(--text); font-weight: 500; }
.blog-post-body em { color: var(--accent); }
.blog-post-body a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s;
}
.blog-post-body a:hover { color: var(--accent-hover); }
.blog-post-body blockquote {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 20px; margin: 28px 0;
  font-style: italic; color: var(--text);
}
.blog-post-body code {
  background: rgba(255,255,255,0.06); padding: 2px 6px;
  border-radius: 3px; font-size: 0.88em;
}
.blog-post-body hr {
  border: none; border-top: 1px solid var(--border);
  margin: 40px 0;
}
.blog-post-body ul {
  padding-left: 20px; margin-bottom: 20px;
}
.blog-post-body li { margin-bottom: 8px; }

.blog-figure {
  margin: 32px 0; text-align: center;
}
.blog-figure img {
  max-width: 100%; border-radius: var(--radius-sm);
}
.blog-figure figcaption {
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 10px; font-style: italic;
}

.blog-inline-img {
  max-width: 100%; border-radius: var(--radius-sm);
  margin: 8px 0;
}

/* ── Blog like button ── */

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.blog-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.blog-like-btn:hover { color: var(--text-secondary); }
.blog-like-btn.liked { color: #e84848; }
.blog-like-btn.liked:hover { color: #e84848; }

.blog-like-heart {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.blog-like-btn:hover .blog-like-heart { transform: scale(1.15); }

.blog-like-btn.blog-like-pop .blog-like-heart {
  animation: likePopAnim 0.4s var(--ease);
}

@keyframes likePopAnim {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.4); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.blog-like-count {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  min-width: 1ch;
}

.blog-post-like {
  text-align: center;
  margin: 40px auto 0;
  max-width: 680px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.blog-post-like .blog-like-btn {
  font-size: 0.88rem;
  padding: 8px 16px;
}

.blog-post-like .blog-like-heart { font-size: 1.4rem; }
.blog-post-like .blog-like-count { font-size: 0.82rem; }

/* ── Touch device overrides ── */

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .gallery-overlay { opacity: 1; }
  .gallery-item img { filter: brightness(0.82); }
}

@media (pointer: coarse) {
  a, button, .filter-btn, .submit-btn, .gallery-item,
  .blog-card, .blog-like-btn, .lightbox-close, .nav-toggle,
  .admin-trigger, .blog-back {
    min-height: 44px;
    min-width: 44px;
  }
  .nav-links a { padding: 10px 0; }
  .filter-btn { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  .contact-socials a { padding: 10px 4px; }
}

/* ── Hamburger toggle ── */

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 12px; z-index: 1001;
  flex-direction: column; justify-content: center; gap: 5px;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px; min-height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Responsive — Tablet (≤1024px) ── */

@media (max-width: 1024px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }

  section { padding: 80px 28px; }

  .hero { padding: 100px 28px 70px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item.wide { grid-column: span 2; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 20px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 16/10; }
  .about-stats { gap: 32px; }

  .contact-link { font-size: 1.3rem; }
  .contact-grid { gap: 48px; }

  .testimonial-section { padding: 80px 32px; }

  footer { padding: 32px 28px; }

  .lightbox-frame { max-width: 92vw; max-height: 85vh; }
  .lightbox img { max-width: 92vw; max-height: 85vh; }
}

/* ── Responsive — Mobile (≤768px) ── */

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed; inset: 0;
    background: rgba(11,11,11,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 36px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    z-index: 1000;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a {
    font-size: 1.1rem; letter-spacing: 0.22em;
    padding: 12px 0;
  }

  nav { padding: 16px 20px; }
  nav.scrolled { padding: 14px 20px; }

  section { padding: 64px 16px; }

  .hero { padding: 100px 16px 60px; min-height: calc(100vh - env(safe-area-inset-bottom)); }
  .hero-sub { font-size: 0.82rem; max-width: 90%; margin-left: auto; margin-right: auto; }

  .gallery-filters { gap: 8px; margin: 28px 0 32px; overflow-x: auto; flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-overlay { opacity: 1; padding: 10px; }
  .gallery-meta h3 { font-size: 0.88rem; }
  .gallery-meta span { font-size: 0.55rem; }
  .gallery-tags { gap: 3px; margin-top: 5px; }
  .gallery-tag { font-size: 0.5rem; padding: 2px 7px; }

  .about-grid { gap: 32px; margin-top: 40px; }
  .about-image { aspect-ratio: 4/3; }
  .about-text p { font-size: 0.88rem; line-height: 1.75; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .stat-number { font-size: 1.6rem; }

  .contact-grid { gap: 36px; margin-top: 40px; }
  .contact-link { font-size: 1.1rem; word-break: break-word; overflow-wrap: break-word; }
  .contact-socials { flex-wrap: wrap; gap: 12px; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; padding: 16px 0; }
  .submit-btn { padding: 16px 36px; font-size: 0.72rem; width: 100%; text-align: center; }

  .testimonial-section { padding: 64px 16px; }
  .testimonial-quote::before { font-size: 3rem; margin-bottom: 14px; }

  .blog-grid { gap: 16px; margin-top: 36px; }
  .blog-card-body { padding: 16px; }
  .blog-card-title { font-size: 1.15rem; }
  .blog-card-excerpt { font-size: 0.82rem; -webkit-line-clamp: 3; }
  .blog-card-meta { font-size: 0.6rem; }

  .blog-post-cover { aspect-ratio: 16/9; }
  .blog-post-article { padding: 0 4px; }
  .blog-post-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .blog-post-excerpt { font-size: 0.95rem; }
  .blog-back { margin-bottom: 24px; }

  .lightbox { padding: 0; }
  .lightbox-frame { max-width: 100vw; max-height: 85vh; }
  .lightbox img { max-width: 100vw; max-height: 85vh; border-radius: 0; }
  .lightbox-close {
    top: env(safe-area-inset-top, 12px); right: 12px;
    font-size: 2rem; padding: 8px;
    min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.5); border-radius: 50%;
  }

  footer { flex-direction: column; gap: 12px; padding: 32px 16px; text-align: center; }
  footer > div { flex-wrap: wrap; justify-content: center; }

  .filter-btn { padding: 8px 16px; font-size: 0.68rem; white-space: nowrap; flex-shrink: 0; }

  .section-label { font-size: 0.58rem; }
  .section-title { max-width: 100%; }

  .toast { bottom: env(safe-area-inset-bottom, 20px); left: 16px; right: 16px;
    transform: translateY(12px); max-width: none; text-align: center; }
  .toast.show { transform: translateY(0); }
}

/* ── Responsive — Small phone (≤480px) ── */

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; }
  .hero-content { max-width: 100%; }

  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-overlay { padding: 12px; }
  .gallery-meta h3 { font-size: 0.92rem; }

  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }

  .about-grid { gap: 24px; }
  .about-stats { gap: 16px; }
  .about-stats > div { min-width: calc(50% - 16px); }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.56rem; }

  .contact-link { font-size: 0.95rem; word-break: break-word; overflow-wrap: break-word; }
  .contact-info p { font-size: 0.84rem; }

  .blog-card-title { font-size: 1.05rem; }
  .blog-post-body { font-size: 0.88rem; line-height: 1.8; }
  .blog-post-body h2 { font-size: 1.35rem; margin: 36px 0 12px; }
  .blog-post-body h3 { font-size: 1.15rem; margin: 28px 0 10px; }

  .testimonial-quote { font-size: clamp(1.1rem, 4vw, 1.5rem); }
  .testimonial-author { font-size: 0.62rem; }
}

/* ── Landscape phone ── */

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 28px 40px; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  section { padding: 48px 28px; }
  .testimonial-section { padding: 48px 28px; }
}
