/* ==========================================================================
   MesterGumi Kft. — shared stylesheet
   ========================================================================== */

:root{
  --bg:#F7F5F2;
  --text:#191A1D;
  --dark:#14151A;
  --dark2:#1C1D22;
  --border-dark:#2A2C33;
  --border-dark2:#3A3D45;
  --border-dark3:#4A4D55;
  --muted-dark:#B9B4AC;
  --muted-dark2:#8C877F;
  --light-dark-text:#D6D2CB;
  --white:#FFFFFF;
  --card-border:#E4DFD7;
  --text-muted:#5F5A53;
  --beige:#EFEBE5;
  --text-dark2:#4E4A44;
  --text-dark3:#33352F;
  --red:#A8433A;
  --green:#6C9A5E;
  --input-border:#D5CFC5;
  --qty-bg:#F2EFEA;

  --accent: oklch(0.70 0.16 55);
  --accent-hover: oklch(0.76 0.16 60);
  --nav-hover: oklch(0.75 0.16 60);
  --link: oklch(0.62 0.15 52);
  --link-hover: oklch(0.52 0.14 52);
  --price: oklch(0.58 0.14 52);

  --font-head:"Archivo","Segoe UI",system-ui,-apple-system,sans-serif;
  --font-body:"Barlow","Segoe UI",system-ui,-apple-system,sans-serif;

  --container:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
img{ max-width:100%; display:block; }
a{ color:var(--link); text-decoration:none; }
a:hover{ color:var(--link-hover); }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; letter-spacing:-0.02em; }
p{ margin:0; }
input,select,textarea,button{ font-family:var(--font-body); }
button{ font-family:var(--font-body); }
ul{ margin:0; }

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

.visually-hidden{
  position:absolute !important; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0; padding:0; margin:-1px;
}

.skip-link{
  position:absolute; left:12px; top:-60px; background:var(--dark); color:var(--bg);
  padding:10px 16px; border-radius:6px; z-index:100; transition:top .15s ease;
}
.skip-link:focus{ top:12px; color:var(--bg); }

/* ---------- Topbar ---------- */
.topbar{
  background:var(--dark2-strong,#14151A);
  color:var(--muted-dark);
  font-size:13.5px;
  padding:9px 32px;
  display:flex;
  justify-content:center;
}
.topbar-inner{
  max-width:var(--container); width:100%;
  display:flex; flex-wrap:wrap; gap:22px; align-items:center; justify-content:space-between;
}
.topbar-inner .phone{ color:var(--bg); }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:40;
  background:var(--dark2);
  border-bottom:1px solid var(--border-dark);
}
.header-inner{
  max-width:var(--container); margin:0 auto; padding:14px 32px;
  display:flex; align-items:center; gap:28px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:38px; height:38px; border-radius:50%;
  border:5px solid var(--accent); background:var(--dark); flex:none;
}
.brand-name{
  font-family:var(--font-head); font-weight:800; font-size:20px;
  color:var(--bg); line-height:1; letter-spacing:0.01em;
}
.brand-sub{ font-size:11px; color:var(--muted-dark2); letter-spacing:0.18em; }

.nav-toggle{
  display:none; margin-left:auto; background:transparent; border:1px solid var(--border-dark2);
  color:var(--bg); border-radius:6px; padding:8px 10px; cursor:pointer;
}
.main-nav{
  display:flex; flex-wrap:wrap; gap:20px; margin-left:auto;
  font-size:15px; font-weight:500; color:var(--light-dark-text);
}
.main-nav a{ color:var(--light-dark-text); }
.main-nav a:hover, .main-nav a.active{ color:var(--nav-hover); }
.header-actions{ display:flex; align-items:center; gap:12px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  border:none; border-radius:6px; cursor:pointer; font-weight:700; font-size:15px;
  padding:13px 22px; text-decoration:none; text-align:center;
}
.btn-primary{ background:var(--accent); color:var(--dark); }
.btn-primary:hover{ background:var(--accent-hover); color:var(--dark); }
.btn-dark{ background:var(--dark); color:var(--bg); font-weight:600; }
.btn-dark:hover{ color:var(--bg); opacity:.9; }
.btn-outline-dark{
  background:transparent; color:var(--bg); border:1px solid var(--border-dark3); font-weight:600;
}
.btn-outline-dark:hover{ border-color:var(--bg); color:var(--bg); }
.btn-outline-light{
  background:transparent; color:var(--text); border:1px solid var(--input-border); font-weight:600;
}
.btn-outline-light:hover{ color:var(--text); border-color:var(--text-muted); }
.btn-cart{
  background:var(--border-dark); color:var(--bg); border:1px solid var(--border-dark2);
  border-radius:6px; padding:9px 14px; font-size:14px; font-weight:600;
}
.btn-cart:hover{ border-color:var(--accent); color:var(--bg); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 14px; font-size:14px; }

/* ---------- Sections ---------- */
.section{ max-width:var(--container); margin:0 auto; padding:70px 32px; }
.section-tight{ padding-top:36px; padding-bottom:36px; }
.hero-dark{ background:var(--dark); color:var(--bg); padding:56px 32px; }
.hero-dark .container{ max-width:var(--container); }
.hero-dark h1{ font-size:44px; font-weight:800; }
.hero-dark p.lead{ font-size:18px; color:var(--muted-dark); max-width:680px; margin-top:14px; }

.eyebrow{
  display:inline-block; background:var(--accent); color:var(--dark); font-weight:700;
  font-size:13px; letter-spacing:0.12em; padding:6px 12px; border-radius:4px;
}

.section-title{ font-size:38px; font-weight:800; }
.section-desc{ font-size:18px; color:var(--text-muted); max-width:640px; margin-top:8px; }

/* ---------- Home hero ---------- */
.home-hero{ background:var(--dark); color:var(--bg); }
.home-hero-grid{
  max-width:var(--container); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; min-height:520px;
}
.home-hero-copy{ padding:72px 0; }
.home-hero h1{ font-size:60px; line-height:1.02; font-weight:800; margin:22px 0 0; }
.home-hero h1 span{ color:var(--accent); }
.home-hero-copy p{ font-size:19px; line-height:1.6; color:var(--muted-dark); max-width:520px; margin:22px 0 0; }
.home-hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.home-hero-stats{ display:flex; gap:36px; margin-top:44px; flex-wrap:wrap; }
.stat-num{ font-family:var(--font-head); font-size:30px; font-weight:800; color:var(--accent); }
.stat-label{ font-size:14px; color:var(--muted-dark2); }
.home-hero-media{
  height:100%; min-height:520px; border-radius:0; overflow:hidden;
  background-size:cover; background-position:center;
}
.home-hero-media img{ width:100%; height:100%; object-fit:cover; min-height:320px; }

.usp-strip{ background:var(--dark2); color:var(--light-dark-text); padding:22px 32px; }
.usp-strip .container{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; font-size:15px;
}

/* ---------- Grids ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }

/* ---------- Cards ---------- */
.card{ background:var(--white); border:1px solid var(--card-border); border-radius:10px; }
.card-pad{ padding:26px; }
.service-card{ padding:26px; }
.service-card:hover{ border-color:var(--accent); }
.service-icon{ width:40px; height:40px; border-radius:50%; border:4px solid var(--accent); }
.service-card h3{ font-size:20px; font-weight:700; margin:16px 0 8px; }
.service-card p{ font-size:15.5px; line-height:1.6; color:var(--text-muted); }
.service-price{ margin-top:14px; font-weight:700; color:var(--price); font-size:15px; }

.thumb{
  background-size:cover; background-position:center; background-color:#EDE9E3;
}
.thumb img{ width:100%; height:100%; object-fit:cover; }

.product-card{ overflow:hidden; display:flex; flex-direction:column; }
.product-card:hover{ border-color:var(--accent); }
.product-card .thumb{ height:170px; }
.product-card-body{ padding:18px; display:flex; flex-direction:column; gap:5px; flex:1; }
.product-brand{ font-size:12px; color:var(--muted-dark2); letter-spacing:0.1em; }
.product-name{ font-weight:700; font-size:16.5px; line-height:1.3; }
.product-size{ font-size:14px; color:var(--text-muted); }
.product-stock{ font-size:13.5px; color:var(--green); }
.product-price{ margin-top:auto; padding-top:12px; font-family:var(--font-head); font-weight:800; font-size:21px; }

.dark-product-card{ background:var(--dark2); border:1px solid #2E3037; overflow:hidden; display:flex; flex-direction:column; border-radius:10px; }
.dark-product-card .thumb{ height:150px; }
.dark-product-card .body{ padding:16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.dark-product-card .product-brand{ color:var(--muted-dark2); }
.dark-product-card .product-name{ color:var(--bg); }
.dark-product-card .product-size{ color:var(--muted-dark); }
.dark-product-card .product-price{ color:var(--accent-hover); font-size:20px; }

.review-card{ padding:24px; }
.review-stars{ color:var(--accent); font-size:17px; letter-spacing:2px; }
.review-card p{ font-size:16px; line-height:1.6; color:var(--text-dark3); margin:10px 0 12px; }
.review-name{ font-weight:700; font-size:15px; }
.review-meta{ font-size:13.5px; color:var(--muted-dark2); }

.team-card{ overflow:hidden; }
.team-card .thumb{ height:180px; }
.team-card-body{ padding:16px; }
.team-name{ font-weight:700; font-size:17px; }
.team-role{ font-size:14.5px; color:var(--muted-dark2); }
.team-note{ font-size:14.5px; color:var(--text-muted); margin-top:6px; }

.blog-card{ overflow:hidden; display:flex; flex-direction:column; }
.blog-card .thumb{ height:170px; }
.blog-card-body{ padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.blog-meta{ font-size:12.5px; color:var(--muted-dark2); letter-spacing:0.08em; }
.blog-card h3{ font-size:19px; font-weight:700; line-height:1.3; }
.blog-card p{ font-size:15.5px; line-height:1.6; color:var(--text-muted); }
.blog-more{ margin-top:auto; padding-top:10px; font-weight:600; color:var(--price); font-size:15px; }

.fact{ }
.fact-k{ font-family:var(--font-head); font-size:34px; font-weight:800; color:var(--link); }
.fact-v{ font-size:15.5px; color:var(--text-dark2); }

/* ---------- Steps ---------- */
.steps-box{ padding:38px; display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.steps-box h2{ font-size:30px; font-weight:800; }
.steps-box > div > p{ color:var(--text-muted); font-size:16.5px; line-height:1.6; margin-top:10px; }
.step{ display:flex; gap:16px; align-items:flex-start; }
.step-num{
  min-width:34px; height:34px; border-radius:50%; background:var(--accent); color:var(--dark);
  font-family:var(--font-head); font-weight:800; display:flex; align-items:center; justify-content:center; flex:none;
}
.step-t{ font-weight:700; font-size:17px; }
.step-d{ color:var(--text-muted); font-size:15.5px; line-height:1.55; }
.steps-list{ display:flex; flex-direction:column; gap:18px; }

/* ---------- Gumihotel band ---------- */
.band{ background:var(--beige); padding:60px 32px; }
.band-grid{ max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.band h2{ font-size:32px; font-weight:800; }
.band p{ font-size:17px; line-height:1.65; color:var(--text-dark2); margin-top:14px; }
.band .thumb{ height:260px; border-radius:10px; }
.band .btn{ margin-top:22px; }

/* ---------- Services full list ---------- */
.service-row{
  background:var(--white); border:1px solid var(--card-border); border-radius:10px; padding:28px;
  display:grid; grid-template-columns:220px 1fr 180px; gap:26px; align-items:center;
}
.service-row .thumb{ height:120px; border-radius:8px; }
.service-row h3{ font-size:23px; font-weight:700; }
.service-row p{ font-size:16px; line-height:1.6; color:var(--text-muted); margin-top:8px; }
.service-time{ font-size:14.5px; color:var(--muted-dark2); margin-top:8px; }
.service-row-price{ text-align:right; }
.service-row-price .price{ font-family:var(--font-head); font-weight:800; font-size:24px; }
.service-row-price .btn{ margin-top:10px; }

/* ---------- Price table ---------- */
.price-table{ background:var(--white); border:1px solid var(--card-border); border-radius:12px; overflow:hidden; }
.price-head, .price-row{
  display:grid; grid-template-columns:1fr 130px 130px 130px; gap:0;
}
.price-head{ background:var(--dark); color:var(--bg); font-weight:700; font-size:14px; padding:16px 24px; }
.price-head div:not(:first-child){ text-align:right; }
.price-row{ padding:15px 24px; border-bottom:1px solid var(--card-border); font-size:16px; }
.price-row:last-child{ border-bottom:none; }
.price-row .name{ font-weight:500; }
.price-row div:not(.name){ text-align:right; color:var(--text-dark2); }
.price-notes{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:26px; }
.price-note{ background:var(--beige); border-radius:10px; padding:22px; }
.price-note h3{ font-size:18px; font-weight:700; }
.price-note p{ font-size:15.5px; line-height:1.6; color:var(--text-dark2); margin-top:6px; }

/* ---------- Filters (shop) ---------- */
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:26px; align-items:center; }
.filter-btn{
  border:1px solid var(--input-border); background:var(--white); border-radius:20px;
  padding:9px 18px; font-size:14.5px; font-weight:600; cursor:pointer; color:var(--text);
}
.filter-btn.active{ background:var(--dark); color:var(--bg); border-color:var(--dark); }
.filter-count{ margin-left:auto; font-size:14.5px; color:var(--text-muted); }

.notice-box{ margin-top:34px; background:var(--beige); border-radius:10px; padding:24px; font-size:15.5px; line-height:1.65; color:var(--text-dark2); }

/* ---------- Forms ---------- */
.form-card{ background:var(--white); border:1px solid var(--card-border); border-radius:12px; padding:28px; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; align-content:start; }
.form-title{ grid-column:1 / -1; font-size:24px; font-weight:800; }
.full{ grid-column:1 / -1; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], input:not([type]), select, textarea{
  border:1px solid var(--input-border); border-radius:6px; padding:13px; font-size:15.5px; width:100%; background:var(--white); color:var(--text);
}
textarea{ min-height:90px; resize:vertical; }
.checkbox-row{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--text-dark2); }
.checkbox-row input{ margin-top:3px; width:auto; }
.field-error{ color:var(--red); font-size:13px; margin-top:4px; display:none; }
.form-actions{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--card-border); padding-top:18px; flex-wrap:wrap; gap:12px; }
.form-actions .total{ font-family:var(--font-head); font-weight:800; font-size:24px; }

.slots{ display:flex; flex-wrap:wrap; gap:8px; }
.slot{
  border:1px solid var(--input-border); border-radius:6px; padding:9px 14px; font-size:14.5px;
  background:var(--bg); cursor:pointer;
}
.slot:hover, .slot.selected{ border-color:var(--accent); background:var(--white); }
.slot.selected{ background:var(--accent); color:var(--dark); font-weight:700; }

.side-note{ background:var(--beige); border-radius:12px; padding:24px; }
.side-note h3{ font-size:19px; font-weight:700; }
.side-note ul{ padding-left:18px; font-size:15.5px; line-height:1.7; color:var(--text-dark2); margin:10px 0 0; }
.side-note .urgent{ margin-top:18px; font-size:15.5px; color:var(--text-dark2); }

.success-box{ background:var(--white); border:1px solid var(--card-border); border-radius:12px; padding:44px; text-align:center; }
.success-mark{ width:56px; height:56px; border-radius:50%; background:var(--accent); margin:0 auto; }
.success-box h1, .success-box h2{ font-size:30px; font-weight:800; margin-top:18px; }
.success-box p{ font-size:17px; color:var(--text-muted); margin-top:10px; max-width:520px; margin-left:auto; margin-right:auto; }
.success-box .btn{ margin-top:20px; }

/* ---------- Cart ---------- */
.cart-empty{ background:var(--white); border:1px solid var(--card-border); border-radius:10px; padding:40px; text-align:center; margin-top:22px; }
.cart-empty p{ font-size:17px; color:var(--text-muted); margin-bottom:16px; }
.cart-layout{ display:grid; grid-template-columns:1fr 340px; gap:24px; margin-top:22px; align-items:start; }
.cart-lines{ display:flex; flex-direction:column; gap:14px; }
.cart-line{
  background:var(--white); border:1px solid var(--card-border); border-radius:10px; padding:16px;
  display:grid; grid-template-columns:90px 1fr auto; gap:16px; align-items:center;
}
.cart-line .thumb{ height:70px; border-radius:6px; }
.cart-line-name{ font-weight:700; font-size:16.5px; }
.cart-line-meta{ font-size:14px; color:var(--text-muted); }
.cart-line-remove{ font-size:13.5px; color:var(--red); cursor:pointer; margin-top:4px; background:none; border:none; padding:0; }
.cart-line-qty{ display:flex; align-items:center; gap:14px; }
.qty-control{ display:flex; align-items:center; border:1px solid var(--input-border); border-radius:6px; overflow:hidden; }
.qty-control button{ border:none; background:var(--qty-bg); padding:8px 13px; font-size:16px; cursor:pointer; }
.qty-control .qty-val{ padding:0 14px; font-weight:700; min-width:22px; text-align:center; }
.cart-line-total{ font-family:var(--font-head); font-weight:800; font-size:18px; min-width:110px; text-align:right; }
.cart-summary{ background:var(--white); border:1px solid var(--card-border); border-radius:10px; padding:22px; }
.cart-summary h3{ font-size:20px; font-weight:700; }
.summary-row{ display:flex; justify-content:space-between; margin-top:14px; font-size:16px; }
.summary-total{ display:flex; justify-content:space-between; margin-top:14px; padding-top:14px; border-top:1px solid var(--card-border); font-family:var(--font-head); font-weight:800; font-size:22px; }
.summary-vat{ font-size:13px; color:var(--muted-dark2); margin-top:6px; }
.cart-count-badge{ font-variant-numeric:tabular-nums; }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--white); border:1px solid var(--card-border); border-radius:10px; padding:20px 24px; cursor:pointer; }
.faq-q{ display:flex; justify-content:space-between; gap:20px; align-items:center; background:none; border:none; width:100%; text-align:left; cursor:pointer; padding:0; font-family:var(--font-body); }
.faq-q span.txt{ font-weight:700; font-size:17.5px; color:var(--text); }
.faq-sign{ color:var(--link); font-size:22px; font-weight:700; flex:none; }
.faq-a{ font-size:16px; line-height:1.65; color:var(--text-muted); margin-top:12px; display:none; }
.faq-item.open .faq-a{ display:block; }

/* ---------- Legal pages ---------- */
.legal-hero p{ font-size:16px; color:var(--muted-dark); }
.legal-body{ background:var(--white); border:1px solid var(--card-border); border-radius:12px; padding:36px; display:flex; flex-direction:column; gap:22px; }
.legal-block h3{ font-size:20px; font-weight:700; }
.legal-block p{ font-size:16px; line-height:1.7; color:var(--text-dark2); margin-top:8px; white-space:pre-line; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.contact-card{ padding:28px; }
.contact-card h2{ font-size:24px; font-weight:800; }
.contact-list{ display:flex; flex-direction:column; gap:14px; margin-top:16px; font-size:16.5px; color:var(--text-dark3); }
.map-box{
  height:230px; margin-top:20px; border-radius:10px; background:var(--beige);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; padding:20px;
}
.map-box .pin{ color:var(--link); }
.map-box strong{ font-size:15px; color:var(--text-dark2); }
.map-box span{ font-size:13.5px; color:var(--muted-dark2); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--dark); color:var(--muted-dark); padding:56px 32px 28px; margin-top:auto; }
.footer-grid{ max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; }
.footer-brand{ font-family:var(--font-head); font-weight:800; font-size:20px; color:var(--bg); }
.footer-desc{ font-size:15px; line-height:1.65; margin-top:10px; }
.footer-legal{ font-size:14px; line-height:1.7; margin-top:14px; color:var(--muted-dark2); }
.footer-col{ display:flex; flex-direction:column; gap:9px; font-size:15px; }
.footer-col-title{ color:var(--bg); font-weight:700; }
.footer-col a{ color:var(--muted-dark); }
.footer-col a:hover{ color:var(--nav-hover); }
.footer-bottom{
  max-width:var(--container); margin:28px auto 0; padding-top:20px; border-top:1px solid var(--border-dark);
  display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; font-size:13.5px; color:#77726B;
}

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:60; background:var(--dark2);
  border-top:2px solid var(--accent); padding:20px 32px; display:none;
}
.cookie-banner.show{ display:block; }
.cookie-inner{ max-width:var(--container); margin:0 auto; display:flex; flex-wrap:wrap; gap:20px; align-items:center; justify-content:space-between; }
.cookie-text{ color:var(--light-dark-text); font-size:15px; line-height:1.6; max-width:720px; }
.cookie-text a{ color:var(--nav-hover); }
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- Form success/error banners ---------- */
.alert{ border-radius:8px; padding:16px 18px; font-size:15px; margin-bottom:18px; }
.alert-error{ background:#F7E3E0; color:#7A2E26; border:1px solid #E4B5AE; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .home-hero-grid{ grid-template-columns:1fr; min-height:auto; }
  .home-hero-media{ min-height:280px; order:-1; }
  .home-hero h1{ font-size:42px; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-2{ grid-template-columns:1fr; }
  .band-grid{ grid-template-columns:1fr; }
  .steps-box{ grid-template-columns:1fr; padding:28px; }
  .service-row{ grid-template-columns:1fr; }
  .service-row-price{ text-align:left; }
  .contact-grid{ grid-template-columns:1fr; }
  .cart-layout{ grid-template-columns:1fr; }
  .price-head, .price-row{ grid-template-columns:1fr 90px 90px 90px; font-size:14px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width:760px){
  .main-nav{
    display:none; width:100%; flex-direction:column; gap:4px; margin-top:14px; order:5;
  }
  .main-nav.show{ display:flex; }
  .header-inner{ flex-wrap:wrap; }
  .nav-toggle{ display:inline-flex; }
  .header-actions{ margin-left:auto; }
  .home-hero h1{ font-size:34px; }
  .section-title, .hero-dark h1{ font-size:30px; }
  .grid-4, .grid-3{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .booking-layout, .checkout-layout{ grid-template-columns:1fr !important; }
  .footer-grid{ grid-template-columns:1fr; }
  .price-notes{ grid-template-columns:1fr; }
  .topbar-inner{ justify-content:center; text-align:center; }
}
