/* =========================
   Base Theme
========================= */
:root{
  --red:#c1121f;
  --text:#111;
  --muted:#555;
  --bg:#fff;
  --card:#f6f6f7;
  --border:#e7e7ea;
  --radius:14px;
  --max:1100px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }
html, body { height:100%; }

html {
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

img{ max-width:100%; display:block; }
a{ color:var(--red); text-decoration:none; transition: color 0.2s ease; }
a:hover{ text-decoration:underline; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:24px;
}

.muted{ color:var(--muted); }
.lead{ color:var(--muted); font-size:1.05rem; max-width:70ch; }

h1,h2,h3{
  font-family: "Playfair Display", serif;
  margin:0 0 8px;
  line-height:1.15;
}
p{ margin:0 0 12px; }

.hidden{
  display: none !important;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  text-decoration:none !important;
  transition: transform .06s ease, opacity .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-primary:hover{ opacity:.95; }

.btn-outline{
  background:#fff;
  color:var(--red);
  border-color:var(--red);
}
.btn-outline:hover{ opacity:.95; }

/* Accessibility: focus */
.btn:focus,
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus{
  outline: none;
}
.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  box-shadow: 0 0 0 4px rgba(193,18,31,.18);
  border-color: var(--red);
}

/* =========================
   Topbar
========================= */
.topbar{
  background:#0f0f10;
  color:#fff;
  font-size:.95rem;
}
.topbar a{
  color:#fff;
  text-decoration:none;
  opacity:.9;
}
.topbar a:hover{ opacity:1; text-decoration:underline; }
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 24px;
}
.topbar-left{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.dot{ opacity:.55; margin:0 6px; }
.topbar-right{
  color:#fff;
  opacity:.9;
  font-weight:800;
  white-space:nowrap;
}

/* =========================
   Header / Nav
========================= */
.site-header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  z-index:50;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
}
.logo:hover{ text-decoration:none; }
.logo-mark{
  width:44px;
  height:44px;
  object-fit:contain;
  display:block;
}
.logo-text{ font-weight:900; }

/* Desktop nav */
.nav{
  display:flex;
  gap:16px;
  align-items:center;
}
.nav a{
  color:var(--text);
  font-weight:700;
}
.nav a:hover{ text-decoration:none; opacity:.75; }
.nav a.btn{ color:#fff; }

.mobile-quote{ display:none; }

/* Mobile controls wrapper */
.mobile-controls{
  display:flex;
  align-items:center;
  gap:10px;
}

/* =========================
   Mobile Menu (Hamburger + Dropdown)
========================= */
.mobile-menu-toggle{
  display:none;
  background:#fff;
  border:1px solid var(--border);
  font-size:1.4rem;
  font-weight:900;
  cursor:pointer;
  color:var(--text);
  line-height:1;
  padding:10px 12px;
  border-radius:12px;
  box-shadow: var(--shadow);
}
.mobile-menu-toggle:hover{ opacity:.9; }
.mobile-menu-toggle:active{ transform: translateY(1px); }

.mobile-menu{
  display:none;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow: var(--shadow);
  position:sticky;
  top:72px; 
  z-index:49;
}
.mobile-menu a{
  display:block;
  padding:16px 24px;
  font-weight:800;
  color:var(--text);
  border-top:1px solid var(--border);
  text-decoration:none;
}
.mobile-menu a:hover{
  background:#fafafb;
  text-decoration:none;
}
.mobile-menu a.btn{
  margin:12px 24px;
  text-align:center;
  border-top:none;
}
.mobile-menu.show{
  display:block;
}

/* =========================
   Cards / Forms
========================= */
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.form label{
  display:block;
  font-weight:750;
  margin:10px 0 6px;
}
.form input,
.form select,
.form textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-size:1rem;
  outline:none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193,18,31,.12);
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.fineprint{
  color:var(--muted);
  font-size:.9rem;
  margin-top:10px;
}

/* Success Message Box */
.success-message {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

/* =========================
   Sections
========================= */
.section{ padding:44px 0; }
.section-alt{
  background:#fafafb;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{ margin-bottom:16px; }

/* =========================
   Hero
========================= */
.hero{ padding:42px 0; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}

.kicker{
  display:inline-block;
  font-weight:900;
  letter-spacing:.4px;
  color:var(--red);
  text-transform:uppercase;
  font-size:.85rem;
  margin:0 0 10px;
}

.hero-title{
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height:1.05;
  margin-bottom:10px;
}

.hero-subtitle{
  color:var(--muted);
  font-size:1.1rem;
  max-width:54ch;
}

.hero-actions{
  display:flex;
  gap:10px;
  margin:18px 0 16px;
  flex-wrap:wrap;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.badge{
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
  font-size:.95rem;
}

.hero-media{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.hero-photo{
  background: url("/assets/img/hero.jpg") center/cover no-repeat;
  border-radius: var(--radius);
  border:1px solid var(--border);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}

/* =========================
   Grids / Steps
========================= */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.link{ color:var(--red); font-weight:900; }
.center-cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.step-num{
  width:32px;
  height:32px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

/* =========================
   Gallery preview blocks (home)
========================= */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.gallery-grid a{
  display:block;
  border-radius: var(--radius);
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
  text-decoration:none;
}
.gallery-grid img{
  width:100%;
  height: 170px;
  object-fit:cover;
  display:block;
}

/* =========================
   Gallery Page Specifics
========================= */
.img-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.img-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin:0; /* Removes default figure margins */
}
.img-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.img-cap{
  padding:10px 12px;
  font-weight:900;
}


/* =========================
   Reviews Page Specifics
========================= */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.stars{
  letter-spacing:1px;
  font-weight:900;
  color:var(--red);
  margin-bottom:6px;
  font-size:1.05rem;
}
.review-meta{
  margin-top:10px;
  font-weight:900;
}
.review-meta span{
  display:inline-block;
  margin-left:6px;
  font-weight:800;
  color:var(--muted);
}
.quote{
  font-size:2.2rem;
  line-height:1;
  color:rgba(193,18,31,.25);
  font-family:"Playfair Display", serif;
  margin-bottom:6px;
}

/* =========================
   About Page Specifics
========================= */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:start; }
.photo-box{
  border-radius: var(--radius);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  background:#fff;
}
.photo-box img{
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 20px; }
.exp-badge{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 14px;
  font-weight:900;
  font-size:.95rem;
  box-shadow:var(--shadow);
}


/* =========================
   CTA Band
========================= */
.cta{
  padding:44px 0;
  background:#0f0f10;
  color:#fff;
}
.cta a{ color:#fff; }
.cta-inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cta .btn-outline{
  color:#fff !important;
  border-color:#fff !important;
  background:transparent !important;
}
.cta .btn-outline:hover{
  background:#fff !important;
  color:#111 !important;
}

.cta a.btn{ text-decoration:none !important; }

/* =========================
   Footer
========================= */
.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-grid{
  display:flex;
  gap:22px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer-grid > div{ min-width:240px; }
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-links a{
  color:var(--text);
  font-weight:800;
}
.footer-links a:hover{
  opacity:.75;
  text-decoration:none;
}
.footer-bottom{
  border-top:1px solid var(--border);
  padding:14px 24px;
  color:var(--muted);
}

/* =========================
   Mobile Sticky Bar
========================= */
.mobile-sticky{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:999;
  background: rgba(255,255,255,.95);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 30px rgba(0,0,0,.10);
  padding:10px 12px;
  display:none;
  gap:10px;
}
.ms-btn{
  flex:1;
  text-align:center;
  padding:12px 12px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  text-decoration:none !important;
}
.ms-primary{ background: var(--red); color:#fff; }
.ms-outline{
  background:#fff;
  color: var(--red);
  border:1px solid var(--red);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero-grid{ grid-template-columns: 1fr; }

  /* Gallery Page responsive */
  .img-grid{ grid-template-columns: repeat(2, 1fr); }
  .img-card img{ height:220px; }
  
  /* About Page responsive */
  .two-col{ grid-template-columns:1fr; }
  .photo-box img{ height:320px; }
  
  /* Reviews Page responsive */
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px){
  .topbar-right{ display:none; }
  .nav{ display:none; }

  .mobile-quote{ display:inline-block; }
  .mobile-menu-toggle{ display:block; }

  .grid2{ grid-template-columns:1fr; }
  .steps{ grid-template-columns: 1fr; }

  .mobile-sticky{ display:flex; }
  body{ padding-bottom:72px; }

  .logo-mark{ width:38px; height:38px; }
  .mobile-menu{ top:76px; }
}

@media (max-width: 640px){
  .gallery-grid img{ height: 210px; }

  .img-grid{ grid-template-columns: 1fr; }
  .img-card img{ height:240px; }
  
  .reviews-grid{ grid-template-columns: 1fr; }
}