:root {
  --red: #D01C1C;
  --black: #000000;
  --ink: #1A1112;
  --white: #FFFFFF;
  --line: #DCDCDC;
  --soft: #DCDCDC;
  --muted: #000000;
  --radius: 18px;
  --shadow: 0 16px 45px rgba(26, 17, 18, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--black); font: 14px/1.55 Inter, Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; letter-spacing: .08em; }
.brand strong, .brand small { display: block; line-height: .9; }
.brand strong { font-size: 18px; }
.brand small { font-size: 10px; letter-spacing: .28em; margin-top: 5px; }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; color: var(--white); background: var(--red); font-size: 11px; font-weight: 800; letter-spacing: -.08em; transform: skew(-8deg); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.site-nav a { color: var(--black); }
.site-nav a:hover { color: var(--red); }
.site-nav .nav-cta { padding: 12px 18px; color: var(--white); background: var(--red); border-radius: 999px; }
.nav-cta span { margin-left: 7px; font-size: 18px; line-height: 0; }

.eyebrow { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.section h2 { margin: 8px 0 0; font-size: clamp(30px, 4vw, 52px); line-height: 1.02; letter-spacing: -.055em; }
.section-intro { max-width: 440px; margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.text-link { color: var(--red); font-weight: 800; font-size: 13px; }
.text-link:hover { text-decoration: underline; }

.hero { padding: 52px 0 80px; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 48px; align-items: center; }
.hero-copy h1 { max-width: 600px; margin: 14px 0 22px; font-size: clamp(48px, 7vw, 88px); line-height: .92; letter-spacing: -.075em; }
.hero-copy h1 em { color: var(--red); font-style: normal; }
.hero-copy p { max-width: 470px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 22px; border: 1px solid var(--black); border-radius: 999px; font-weight: 800; font-size: 13px; }
.button--primary { border-color: var(--red); color: var(--white); background: var(--red); }
.button--primary:hover { border-color: #A31616; background: #A31616; }
.button--dark { border-color: var(--black); color: var(--white); background: var(--black); }
.button--whatsapp { border-color: #25D366; color: var(--white); background: #25D366; }
.button--whatsapp:hover { border-color: #128C7E; background: #128C7E; }
.button[href*="wa.me"] { border-color: #25D366; color: var(--white); background: #25D366; }
.button[href*="wa.me"]:hover { border-color: #128C7E; background: #128C7E; }
.button--whatsapp svg, .whatsapp-float svg { width: 18px; height: 18px; fill: currentColor; }
.button--light { border-color: var(--line); background: var(--white); }
.button:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(26,17,18,.1); }
.hero-visual { min-height: 520px; position: relative; overflow: hidden; border-radius: 26px; background: var(--ink); box-shadow: var(--shadow); }
.hero-visual:before { content: ''; position: absolute; inset: 0 32% 0 0; background: linear-gradient(145deg, rgba(208,28,28,.95), rgba(26,17,18,.35)), url('/media/products/2026/05/eb237ab41b678de6a9bba7ee3ec13823.jpg') center/cover; }
.hero-panel { position: absolute; right: 0; bottom: 0; width: 52%; padding: 30px; color: var(--white); background: rgba(0,0,0,.72); }
.hero-panel h2 { margin: 0 0 9px; font-size: 28px; line-height: 1; letter-spacing: -.05em; }
.hero-panel p { margin: 0; color: rgba(255,255,255,.78); }
.hero-stamp { position: absolute; top: 26px; right: 26px; width: 108px; height: 108px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: var(--white); font-size: 11px; font-weight: 800; text-align: center; transform: rotate(10deg); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1 / .9; display: grid; place-items: center; overflow: hidden; background: var(--line); }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder { color: var(--black); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.discount { position: absolute; top: 12px; left: 12px; padding: 5px 9px; border-radius: 999px; color: var(--white); background: var(--red); font-size: 10px; font-weight: 800; }
.product-body { padding: 14px; }
.product-category { margin: 0 0 6px; color: var(--red) !important; font-size: 8px; text-transform: lowercase; opacity: 0.7; }
.product-name { margin: 0; font-size: 16px; line-height: 1.2; }
.branch-badge { display: inline-block; margin-top: 9px; padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 15px; }
.price { font-size: 19px; font-weight: 800; }
.old-price { color: rgba(0,0,0,.55); font-size: 12px; text-decoration: line-through; }
.product-action { width: auto; min-height: 32px; margin: 0 0 0 auto; padding: 0 10px; gap: 5px; font-size: 10px; white-space: nowrap; }
.product-action svg { width: 14px; height: 14px; }
.category-links { display: flex; flex-wrap: wrap; gap: 9px; margin: -6px 0 28px; }
.category-links .button { min-height: 38px; padding: 0 15px; font-size: 11px; }
.filter-row { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.search-box { flex: 1; min-width: 200px; }
.search-box input { width: 100%; min-height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; }
.search-box input:focus { outline: none; border-color: var(--red); }
.branch-filter { min-width: 180px; }
.branch-filter select { width: 100%; min-height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; background: var(--white); }
.branch-filter select:focus { outline: none; border-color: var(--red); }

.work-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
.work-card { min-height: 320px; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.work-card:nth-child(n+2) { min-height: 250px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; opacity: .68; transition: .3s; }
.work-card:hover img { transform: scale(1.04); opacity: .82; }
.work-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 24px; background: linear-gradient(transparent 30%, rgba(0,0,0,.84)); }
.work-overlay h3 { margin: 5px 0; font-size: 20px; line-height: 1; }
.work-overlay p { margin: 0; color: rgba(255,255,255,.78); font-size: 11px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.quote-mark { color: var(--red); font-size: 42px; line-height: .7; }
.review-card blockquote { margin: 17px 0 24px; font-size: 17px; line-height: 1.4; }
.review-author { font-size: 11px; font-weight: 800; }
.review-role { color: var(--muted); font-size: 10px; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-copy p { color: var(--muted); font-size: 17px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-item { padding: 23px; border-top: 3px solid var(--red); background: var(--white); }
.why-number { color: var(--red); font-size: 12px; font-weight: 800; }
.why-item h3 { margin: 11px 0 5px; font-size: 15px; }
.why-item p { margin: 0; color: var(--muted); font-size: 12px; }

.branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.branch-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.branch-card img { width: 100%; aspect-ratio: 1.6; object-fit: cover; background: var(--ink); }
.branch-card-body { padding: 19px; }
.branch-card h3 { margin: 0 0 5px; font-size: 18px; }
.branch-card p { margin: 0 0 17px; color: var(--muted); }

.page-hero { padding: 82px 0 72px; background: var(--ink); color: var(--white); }
.page-hero h1 { max-width: 760px; margin: 14px 0 0; font-size: clamp(45px, 7vw, 78px); line-height: .94; letter-spacing: -.07em; }
.page-hero p { max-width: 570px; color: rgba(255,255,255,.78); font-size: 17px; }
.page-content { padding: 72px 0; }
.book-us-page { padding-top: 22px; }
.book-us-page .section-head { margin-bottom: 20px; }
.page-content--narrow { max-width: 780px; }
.page-content h2 { margin-top: 0; font-size: 34px; letter-spacing: -.05em; }
.page-content p { color: var(--muted); font-size: 16px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portfolio-section-head { justify-content: center; text-align: center; }
.portfolio-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); cursor: pointer; transition: .2s ease; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.portfolio-card img { width: 100%; aspect-ratio: 1.25; object-fit: cover; background: var(--ink); }
.portfolio-card-body { padding: 20px; }
.portfolio-card h3 { margin: 0 0 5px; font-size: 21px; }
.portfolio-meta { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.portfolio-card p { margin-bottom: 0; font-size: 14px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.booking-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.booking-card h3 { margin: 0 0 7px; font-size: 22px; }
.booking-card p { margin: 0 0 20px; }

.site-footer { margin-top: 40px; padding: 58px 0 20px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 50px; }
.brand--footer { color: var(--white); }
.footer-copy { max-width: 330px; margin: 18px 0 0; color: rgba(255,255,255,.75); }
.footer-grid > div > a:not(.brand), .footer-contact { display: block; margin: 9px 0; color: rgba(255,255,255,.82); font-size: 13px; }
.footer-label { margin: 0 0 15px; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.65); font-size: 11px; }

/* Homepage composition and compact public-site sizing. */
.brand-logo { width: auto; max-width: 170px; max-height: 48px; object-fit: contain; background: transparent; }
.hero--home { height: 90vh; min-height: 100px;  padding: 5px 0 20px; overflow: hidden; }
.hero--home .hero-grid { height: 100%; grid-template-columns: .78fr 1.22fr; gap: 24px; }
.hero--home .hero-copy { min-width: 0; }
.hero--home .hero-copy h1 { max-width: 520px; margin: 10px 0 14px; font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -.065em; }
.hero--home .hero-copy p { max-width: 430px; margin: 0; font-size: 13px; }
.hero-book-button { width: min(100%, 330px); margin-top: 28px; justify-content: space-between; }
.hero-search { display: flex; align-items: center; justify-content: space-between; max-width: 430px; min-height: 44px; margin-top: 22px; padding: 0 10px 0 16px; border: 1px solid var(--line); border-radius: 999px; color: rgba(0,0,0,.55); font-size: 11px; }
.hero-search strong { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--red); background: var(--soft); font-size: 22px; line-height: 1; }
.hero-categories { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 430px; margin-top: 25px; }
.hero-categories a { min-height: 84px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); text-align: center; font-size: 10px; line-height: 1.2; }
.hero-categories a:first-child { border-color: var(--red); box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.hero-categories a:hover { border-color: var(--red); color: var(--red); }
.hero-categories a span { font-size: 24px; line-height: 1; }
.hero--home .hero-visual { min-height: 0; height: 100%; display: flex; flex-direction: column; gap: 12px; overflow: visible; border-radius: 0; background: transparent; box-shadow: none; }
.hero--home .hero-visual:before, .hero--home .hero-panel, .hero--home .hero-stamp { display: none; }
.hero-media { position: relative; overflow: hidden; border-radius: 16px; background: var(--ink); color: var(--white); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.hero-media:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent 65%); }
.hero-media-main { flex: 1 1 auto; min-height: 0; }
.hero-media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 28%; min-height: 110px; }
.hero-media-small { min-height: 0; }
.hero-media-copy { position: absolute; z-index: 1; inset: auto 22px 20px; }
.hero-media-copy h2, .hero-media-copy h3 { max-width: 430px; margin: 0 0 5px; color: var(--white); font-size: 18px; line-height: 1.05; letter-spacing: -.03em; }
.hero-media-copy h3 { font-size: 14px; }
.hero-media-copy p { margin: 0 0 12px; color: var(--white); font-size: 10px; }
.hero-media-copy .button { min-height: 34px; padding: 0 14px; font-size: 10px; }
.review-top { display: flex; align-items: center; gap: 14px; }
.google-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--black); font-size: 24px; font-weight: 800; }
.review-stars { display: flex; gap: 5px; margin: 20px 0; }
.review-stars i { color: #FFD700; font-size: 16px; }
.review-card blockquote { margin: 0; font-size: 14px; line-height: 1.55; color: var(--black); }
.whatsapp-float-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 30; display: flex; flex-direction: column; align-items: end; gap: 10px; }
.whatsapp-float { width: 54px; height: 54px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--white); background: #25D366; box-shadow: 0 8px 22px rgba(0,0,0,.22); cursor: pointer; }
.whatsapp-float:hover { background: #128C7E; }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-branch-menu { min-width: 210px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); color: var(--black); }
.whatsapp-branch-menu strong, .whatsapp-branch-menu a, .whatsapp-branch-menu span { display: block; font-size: 12px; }
.whatsapp-branch-menu strong { margin-bottom: 8px; }
.whatsapp-branch-menu a { padding: 7px 0; color: #128C7E; font-weight: 700; }
.whatsapp-branch-menu a:hover { color: var(--red); }
.section h2 { font-size: clamp(22px, 2.5vw, 32px); }
.product-name { font-size: 13px; }
.price { font-size: 15px; }
.work-overlay h3 { font-size: 16px; }
.why-copy p { font-size: 13px; }
.branch-card h3 { font-size: 15px; }
.portfolio-card h3 { font-size: 16px; }

@media (max-width: 900px) {
  .hero--home { height: auto; min-height: 100px; padding: 78px 0 20px; }
  .hero--home .hero-grid { height: auto; grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero--home { padding: 68px 0 15px; }
  .hero--home .hero-copy h1 { font-size: 28px; }
  .hero--home .hero-visual { min-height: 340px; }
  .hero-media-row { min-height: 100px; }
  .product-grid, .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid, .branch-grid, .portfolio-grid, .booking-grid { grid-template-columns: 1fr; }
  .work-card:first-child { grid-column: span 2; }
  .why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-item { padding: 12px; }
  .review-card { padding: 14px; }
  .google-mark { width: 32px; height: 32px; font-size: 18px; }
  .review-stars i { font-size: 12px; }
  .review-card blockquote { font-size: 11px; }
  .footer-bottom { font-size: 9px; }
}

@media (max-width: 900px) {
  .site-nav { gap: 15px; }
  .hero-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:first-child { grid-column: span 2; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 560px); }
  .header-inner { min-height: 68px; align-items: flex-start; padding: 15px 0; }
  .site-nav { flex-wrap: wrap; justify-content: end; gap: 8px 13px; font-size: 11px; }
  .site-nav .nav-cta { padding: 8px 12px; }
  .hero { padding-top: 36px; }
  .hero-copy h1 { font-size: 42px; }
  .section { padding: 62px 0; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 16px; }
  .product-grid, .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid, .branch-grid, .portfolio-grid, .booking-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .hero-panel { width: 72%; padding: 20px; }
  .hero-stamp { width: 80px; height: 80px; font-size: 9px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
}

.portfolio-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.9); }
.portfolio-modal[hidden] { display: none; }
.modal-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border: none; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.2); font-size: 28px; cursor: pointer; }
.modal-close:hover { background: rgba(255,255,255,.3); }
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: none; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.2); font-size: 18px; cursor: pointer; }
.modal-nav:hover { background: rgba(255,255,255,.3); }
.modal-prev { left: 20px; }
.modal-next { right: 20px; }
.modal-content { max-width: 90%; max-height: 90%; display: flex; flex-direction: column; align-items: center; }
.modal-content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.modal-info { margin-top: 20px; text-align: center; color: var(--white); }
.modal-info h3 { margin: 0 0 8px; font-size: 24px; }
.modal-info p { margin: 0; opacity: 0.8; }

.booking-form-section { max-width: 700px; margin: 0 auto; }
.booking-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--black); }
.form-group input, .form-group select, .form-group textarea { min-height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 120px; padding: 12px 16px; resize: vertical; }
.booking-form button { width: 100%; max-width: 300px; margin: 0 auto; }

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}

.branch-maps { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 24px; }
.branch-map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.branch-map h3 { margin: 0; padding: 16px; background: var(--ink); color: var(--white); font-size: 16px; }
.branch-map iframe { display: block; }
