 /* ══════════════════════════════════════════
       ΚΟΥΡΕΙΟ ΘΑΝΟΣ — Monochrome Masculine Refinement
       ══════════════════════════════════════════ */

    :root {
      --black: #0a0a0a;
      --charcoal: #1a1a1a;
      --dark: #2a2a2a;
      --mid: #4a4a4a;
      --grey: #6a6a6a;
      --silver: #b0b0b0;
      --light: #e5e5e5;
      --white: #ffffff;
      --shadow-card: 0 20px 40px rgba(0,0,0,0.7);
      --max: 1200px;
      --font-display: 'Cinzel', serif;
      --font-body: Arial, Helvetica, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--black);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 20px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* Grain Texture */
    .grain-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.03;
    }

    /* Container */
    .container {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }
    .narrow { max-width: 760px; }
    .center-text { text-align: center; }

    /* Section Fades */
    .fade-top, .fade-bottom {
      position: absolute;
      left: 0; right: 0;
      height: 140px;
      pointer-events: none;
      z-index: 3;
    }
    .fade-top { top: 0; background: linear-gradient(to bottom, var(--black) 0%, transparent 100%); }
    .fade-bottom { bottom: 0; background: linear-gradient(to top, var(--black) 0%, transparent 100%); }

    /* Cover Overlays */
    .cover-overlay { position: absolute; inset: 0; z-index: 1; }
    .cover-overlay.dark { background: rgba(0,0,0,0.7); }
    .cover-overlay.dark-soft { background: rgba(0,0,0,0.55); }
    .cover-overlay.light-tint { background: rgba(240,240,240,0.75); }

    /* Decorative */
    .sec-badge {
      font-family: var(--font-body);
      font-size: 15px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--silver);
      margin-bottom: 10px;
    }
    .sec-badge.light { color: var(--light); }

    .sec-heading {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 700;
      color: var(--charcoal);
      margin: 0 0 8px;
      letter-spacing: 0.02em;
    }
    .sec-heading.light { color: var(--white); }

    .orn-rule {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0 28px;
    }
    .orn-rule span:first-child,
    .orn-rule span:last-child {
      flex: 1;
      height: 1px;
      background: currentColor;
      opacity: 0.3;
    }
    .orn-dia {
      font-size: 16px;
      color: var(--silver);
      opacity: 0.8;
      flex-shrink: 0;
    }
    .orn-rule.light .orn-dia { color: var(--light); }

    .ornament-char {
      font-size: 28px;
      color: var(--silver);
      opacity: 0.8;
      margin: 14px 0 20px;
      letter-spacing: 0.2em;
    }

    /* Topbar */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      position: relative;
    }

    .brand { display: flex; align-items: center; flex-shrink: 0; }
    .brand:focus-visible { outline: 2px solid var(--silver); outline-offset: 4px; }

    .brand-text {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
    }

    /* Hamburger */
    .menu-toggle { display: none; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 4px;
      z-index: 51;
      width: 30px;
      height: 24px;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hamburger:focus-visible { outline: 2px solid var(--silver); outline-offset: 4px; }

    .hamburger span {
      width: 26px;
      height: 2.5px;
      background: var(--white);
      transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 2px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .hamburger span:nth-child(1) { top: 2px; }
    .hamburger span:nth-child(2) { top: 50%; transform: translateX(-50%) translateY(-50%); }
    .hamburger span:nth-child(3) { bottom: 2px; }

    #menu-toggle:checked ~ .hamburger span:nth-child(1),
    #menu-toggle:checked ~ .hamburger span:nth-child(2),
    #menu-toggle:checked ~ .hamburger span:nth-child(3) {
      transform: translateX(-50%) scaleX(1.2) scaleY(1.5);
      background: var(--silver);
      top: 50%;
    }

    .nav {
      display: flex;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav a {
      font-family: var(--font-display);
      font-size: 14px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--silver);
      transition: color 0.2s, text-decoration 0.2s;
      padding: 4px 0;
    }

    .nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 6px; }
    .nav a:focus-visible { outline: 2px solid var(--silver); outline-offset: 4px; border-radius: 2px; }

    /* Mobile Nav */
    @media (max-width: 959px) {
      .topbar-inner { min-height: 56px; }

      /* Prevent brand / hamburger overlap */
      .brand {
        flex: 1;
        padding-right: 48px;
      }

      .hamburger { display: flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
      .nav {
        flex-direction: column;
        gap: 0;
        width: 300px;
        position: fixed;
        top: 56px;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(255,255,255,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      #menu-toggle:checked ~ .nav { max-height: 280px; opacity: 1; }
      .nav a { font-size: 14px; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--light); }
      .nav a:last-child { border-bottom: none; }
      .nav a:hover { background: rgba(255,255,255,0.08); }
    }

    @media (min-width: 960px) {
      .hamburger { display: none !important; }
      .nav { flex-direction: row; gap: 28px; position: static; background: none; border: none; max-height: none; opacity: 1; }
      .nav a { font-size: 14px; padding: 4px 0; border: none; background: none; }
      .nav a:hover { background: none; }
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 24px;
      border-radius: 0;
      cursor: pointer;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.05);
      color: var(--white);
      box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
      transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.2), box-shadow 0.18s ease, background 0.2s ease;
    }
    .btn:hover { transform: translate(5px, 5px); box-shadow: 3px 3px 0 rgba(0,0,0,0.8); background: rgba(255,255,255,0.1); }
    .btn:active { transform: translate(8px, 8px); box-shadow: 0 0 0 rgba(0,0,0,0.8); }

    .btn.primary { background: var(--white); color: var(--black); border-color: transparent; box-shadow: 8px 8px 0 rgba(0,0,0,0.9); }
    .btn.primary:hover { transform: translate(5px, 5px); box-shadow: 3px 3px 0 rgba(0,0,0,0.9); background: #f5f5f5; }
    .btn.primary:active { transform: translate(8px, 8px); box-shadow: 0 0 0 rgba(0,0,0,0.9); }

    .btn.ghost { background: transparent; border-color: rgba(255,255,255,0.3); box-shadow: 8px 8px 0 rgba(0,0,0,0.7); }
    .hero-actions .btn.ghost { color: var(--white); }
    .hero-actions .btn.ghost:hover { transform: translate(5px, 5px); box-shadow: 3px 3px 0 rgba(0,0,0,0.7); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
    .hero-actions .btn.ghost:active { transform: translate(8px, 8px); box-shadow: 0 0 0 rgba(0,0,0,0.7); background: rgba(255,255,255,0.15); }

    .btn.primary.dark { background: var(--charcoal); color: var(--white); border-color: transparent; box-shadow: 8px 8px 0 rgba(0,0,0,0.9); }
    .btn.primary.dark:hover { transform: translate(5px, 5px); box-shadow: 3px 3px 0 rgba(0,0,0,0.9); }
    .btn.primary.dark:active { transform: translate(8px, 8px); box-shadow: 0 0 0 rgba(0,0,0,0.9); }

    .btn.outline-dark { background: transparent; border: 1px solid var(--mid); color: var(--charcoal); box-shadow: 8px 8px 0 rgba(0,0,0,0.3); }
    .btn.outline-dark:hover { transform: translate(5px, 5px); box-shadow: 3px 3px 0 rgba(0,0,0,0.3); }
    .btn.outline-dark:active { transform: translate(8px, 8px); box-shadow: 0 0 0 rgba(0,0,0,0.3); }

    /* Hero */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      background-image: var(--bg);
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }
    .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
    .hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.8) 100%); z-index: 2; }
    .hero-content { position: relative; z-index: 4; padding: 80px 0 100px; color: var(--white); }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-display);
      font-size: 12px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--silver);
      margin-bottom: 18px;
    }
    .rule-line { flex: 0 0 40px; height: 1px; background: var(--silver); opacity: 0.5; }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      text-shadow: 0 4px 40px rgba(0,0,0,0.7);
      margin: 0 0 16px;
      line-height: 1.2;
    }

    .hero-sub {
      font-family: var(--font-display);
      font-size: clamp(20px, 1.8vw, 26px);
      font-style: italic;
      font-weight: 300;
      color: var(--light);
      opacity: 0.9;
      margin: 0 0 6px;
      line-height: 1.7;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }

    /* Sections */
    .section { position: relative; padding: clamp(60px, 12vw, 90px) 0; }
    .cover { background-image: var(--bg); background-size: cover; background-position: center; background-attachment: scroll; }
    @media (hover: hover) and (pointer: fine) { .cover { background-attachment: fixed; } }
    .section .container { position: relative; z-index: 2; }

    /* Contact */
    .grid-2 { display: grid; gap: 24px; }
    @media (min-width: 860px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

    .card { background: var(--white); box-shadow: var(--shadow-card); color: var(--black); }
    .media-card { padding: 0; overflow: hidden; height: 100%; }
    .media-card img { width: 100%; height: 100%; object-fit: cover; }

    /* Override gallery styles for the contact photo */
    .grid-2 .media-card.photo-wrap {
      aspect-ratio: auto;
      box-shadow: var(--shadow-card);
    }

    .contact-card { padding: 32px 32px 28px; }

    .addr-text, .cinfo {
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .addr-text {
      font-family: var(--font-body);
      color: var(--grey);
      font-size: clamp(16px, 1.8vw, 19px);
      margin: 0 0 12px;
      line-height: 1.6;
    }

    .cinfo {
      font-size: clamp(18px, 2vw, 21px);
      font-family: var(--font-body);
      margin: 8px 0;
    }

    .cinfo a { border-bottom: 1px dotted var(--grey); }
    .cinfo a:hover { color: var(--black); }

    .hours-heading {
      font-family: var(--font-body);
      font-size: clamp(16px, 2.2vw, 18px);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 28px 0 12px;
      color: var(--charcoal);
    }

    .hours { list-style: none; padding: 0; margin: 0; }
    .hours li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      font-size: clamp(17px, 2vw, 20px);
      font-family: var(--font-body);
    }
    .hours li:last-child { border-bottom: none; }
    .hours li.closed { opacity: 0.5; font-style: italic; }

    .contact-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

    /* Story */
    .lead-text {
      font-size: clamp(19px, 1.8vw, 25px);
      font-style: italic;
      font-weight: 400;
      line-height: 2;
      letter-spacing: 0.02em;
      color: var(--light);
      max-width: 100%;
      margin: 0 auto;
    }

    /* Services */
    .services { display: grid; gap: 16px; grid-template-columns: 1fr; max-width: 900px; margin: 8px auto 0; }

    .service {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;                     /* allow wrapping on tiny screens */
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-top: 3px solid var(--silver);
      padding: 18px 20px;
      transition: background 0.2s;
    }
    .service:hover { background: rgba(255,255,255,0.1); }

    .service img { width: 48px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }

    .service p {
      margin: 0 0 4px;
      font-family: var(--font-body);
      font-size: clamp(16px, 3.5vw, 20px);  /* responsive text */
      color: var(--light);
      line-height: 1.4;
    }
    .service p:last-child { margin-bottom: 0; }

    .service strong {
      font-family: var(--font-body);
      font-size: clamp(18px, 4vw, 24px);
      font-weight: 600;
      color: var(--white);
      margin-left: 0;                      /* cleaner when wrapping */
    }

    .center-btn { display: flex; justify-content: center; margin-top: 36px; }
    .center-btn .btn { box-shadow: none; }
    .center-btn .btn:hover { transform: scale(1.1); box-shadow: none; }
    .center-btn .btn:active { transform: scale(0.95); }

    .feature-photo {
      position: relative;
      min-height: 80vh;
      background-image: var(--bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: scroll;
    }

    @media (hover: hover) and (pointer: fine) {
      .feature-photo { background-attachment: fixed; }
    }

    /* Video */
    .video-wrap {
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-card), 0 0 0 3px var(--silver);
      margin-top: 4px;
    }
    .video-wrap iframe { width: 100%; aspect-ratio: 16 / 9; display: block; }

    /* Gallery */
    .collage-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(10px, 2.5vw, 16px);
      margin-top: 20px;
    }
    @media (min-width: 720px) { .collage-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1000px) { .collage-grid { grid-template-columns: repeat(4, 1fr); } }

    .photo-wrap {
      background: transparent;
      padding: 0;
      box-shadow: 4px 8px 20px rgba(0,0,0,0.5);
      transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2), box-shadow 0.3s ease;
      width: 100%;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      display: block;
      position: relative;
      cursor: pointer;
    }

    .photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
    .photo-wrap:hover { transform: scale(1.05); box-shadow: 8px 12px 28px rgba(0,0,0,0.7); z-index: 6; }
    .photo-wrap:hover img { transform: scale(1.02); }

    /* Footer */
    .footer {
      padding: clamp(24px, 5vw, 40px) 0;
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
      border-top: 2px solid rgba(255,255,255,0.15);
      color: var(--silver);
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(12px, 3vw, 24px);
      flex-wrap: wrap;
    }
    .footer-brand {
      font-family: var(--font-display);
      font-size: clamp(18px, 2.5vw, 22px);
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .footer-info {
      font-size: clamp(15px, 1.8vw, 17px);
      font-family: var(--font-display);
      letter-spacing: 0.04em;
      text-align: right;
      margin-left: auto;
      flex-shrink: 0;
    }
    .footer-info a { opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
    .footer-info a:hover { opacity: 1; color: var(--white); }

    .service strong, a[href^="tel:"], .hours li span:last-child { font-family: var(--font-body); }

    /* Lightbox */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      z-index: 9998;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .lightbox-overlay.active {
      background: rgba(0, 0, 0, 0.93);
      pointer-events: auto;
      opacity: 1;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .lightbox.active {
      display: flex;
      pointer-events: auto;
    }

    .lightbox-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: min(92vw, 1100px);
      max-height: 90vh;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      display: block;
      box-shadow: 0 30px 80px rgba(0,0,0,0.9);
      animation: lb-scale-in 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.1);
      cursor: default;
      pointer-events: none;
    }

    @keyframes lb-scale-in {
      from { transform: scale(0.88); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .lightbox-close {
      position: absolute;
      top: max(20px, env(safe-area-inset-top));
      right: max(24px, env(safe-area-inset-right));
      font-size: 36px;
      color: var(--silver);
      background: none;
      border: none;
      line-height: 1;
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease;
      font-family: var(--font-body);
      font-weight: 300;
      z-index: 2;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lightbox-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }
    .lightbox-close:active { color: var(--light); background: rgba(255,255,255,0.2); }

    .lightbox-label {
      font-family: var(--font-display);
      font-size: 13px;
      letter-spacing: 0.35em;
      color: var(--silver);
      text-transform: uppercase;
      margin-top: 14px;
      text-align: center;
      white-space: nowrap;
    }

    /* Keep telephone numbers from breaking layout */
    a[href^="tel"],
    a[href^="mailto"] {
      word-break: break-all;
      overflow-wrap: anywhere;
    }

    /* ───── Mobile refinements ───── */
    @media (max-width: 599px) {
      body {
        font-size: 16px;
      }

      .hero-content {
        padding: 60px 0 80px;     /* tighter vertical rhythm */
      }

      .fade-top,
      .fade-bottom {
        height: 80px;             /* smaller fades */
      }

      .contact-card {
        padding: 24px 20px 20px;
      }

      .service {
        padding: 14px 16px;
        gap: 12px;
      }

      .service img {
        width: 40px;
        height: 40px;
      }

      .hero-actions {
        gap: 12px;
      }

      .btn {
        padding: 12px 20px;
        font-size: 11px;
      }

      .topbar-inner {
        padding: 10px 0;
      }

      .section {
        padding: 60px 0;
      }

      .hero {
        min-height: 75vh;
      }

      .photo-wrap {
        min-height: 140px;
      }

      .footer-inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
      }

      .footer-brand,
      .footer-info {
        text-align: center;
        width: 100%;
        margin-left: 0;
      }

      .footer-brand {
        word-break: break-word;
        hyphens: auto;
      }
    }

    @media (max-width: 479px) {
      .container {
        width: min(var(--max), calc(100% - 24px));
      }

      .contact-actions {
        flex-direction: column;
      }

      .contact-actions .btn {
        width: 100%;
      }

      .contact-card {
        padding: 20px 16px 20px;
      }

      .cinfo {
        font-size: clamp(16px, 4.5vw, 19px);
      }

      .hours li {
        font-size: clamp(15px, 4vw, 18px);
      }
    }

    @media (max-width: 400px) {
      .hero-title {
        font-size: clamp(28px, 7vw, 36px);
      }

      .hero-sub {
        font-size: clamp(16px, 4vw, 20px);
        line-height: 1.5;
      }
    }