@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap');

:root {
    --paper: #f7f5ef;
    --paper-warm: #efede5;
    --paper-deep: #e4e2d8;
    --sage: #dfe3da;
    --sage-deep: #cfd6ca;
    --ink: #292c28;
    --muted: #6f736b;
    --accent: #a64b50;
    --accent-dark: #873a3f;
    --line: #dcd9d0;
    --white: #fffefa;
    --radius: 8px;
    --shadow: 0 14px 38px rgba(50, 52, 46, .07);
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 245, 239, .94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(73, 75, 68, .11);
}
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 112px; height: 68px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.main-nav a,
.header-email {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 11px 14px;
    border-radius: 999px;
    transition: .2s ease;
}
.main-nav a { color: #555a52; }
.main-nav a:hover,
.main-nav a.active { color: var(--ink); background: var(--paper-deep); }
.header-email {
    color: var(--white);
    background: var(--accent);
    margin-left: 7px;
}
.header-email:hover { background: var(--accent-dark); }

.hero {
    overflow: hidden;
    position: relative;
    color: var(--ink);
    background:
      radial-gradient(circle at 82% 35%, rgba(166, 75, 80, .07), transparent 33%),
      linear-gradient(135deg, #efede5 0%, #f7f5ef 55%, #e9ebe4 100%);
    border-bottom: 1px solid var(--line);
}
.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -220px;
    bottom: -290px;
    background: rgba(207, 214, 202, .38);
    pointer-events: none;
}
.hero-grid {
    min-height: 490px;
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    align-items: center;
    gap: 70px;
    padding-block: 78px;
}
.eyebrow {
    color: var(--accent);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 17px;
}
.hero h1,
.section-heading h2,
.content-block h2,
.cta-box h2,
.contact-card h2 {
    font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
    font-weight: 500;
}
.hero h1 {
    font-size: clamp(45px, 6.1vw, 76px);
    line-height: 1.01;
    letter-spacing: -.035em;
    margin: 0 0 25px;
    max-width: 830px;
}
.hero-lead {
    max-width: 760px;
    font-size: clamp(17px, 1.8vw, 21px);
    color: #666b63;
    margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 23px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--accent); color: #fff; }
.button.primary:hover { background: var(--accent-dark); }
.button.ghost { color: #4f544c; border-color: #c8c8be; background: rgba(255,255,255,.30); }
.button.ghost:hover { border-color: #9fa299; background: rgba(255,255,255,.66); }
.button.ghost.light { color: #4f544c; border-color: #bfc1b7; }

.hero-mark { display: grid; place-items: center; min-height: 300px; }
.lens-ring {
    width: min(294px, 33vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 18px solid rgba(96, 104, 91, .09);
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 1px rgba(80,85,76,.04), inset 0 0 55px rgba(166,75,80,.06);
}
.lens-ring span {
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid rgba(166,75,80,.43);
    box-shadow: 0 0 0 16px rgba(166,75,80,.035);
}

.section { padding-block: 82px; background: var(--paper); }
.section.alt { background: var(--paper-warm); }
.section-heading { max-width: 790px; margin-bottom: 39px; }
.section-heading h2,
.content-block h2,
.cta-box h2 {
    margin: 0 0 15px;
    line-height: 1.08;
    letter-spacing: -.025em;
    font-size: clamp(33px, 4vw, 50px);
}
.section-heading p,
.content-block > p { font-size: 17px; color: var(--muted); margin: 0; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 29px;
    background: rgba(255, 254, 250, .74);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(58, 60, 53, .035);
}
a.card { text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c9c8bd; background: var(--white); }
.card-number { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .13em; margin-bottom: 33px; }
.card h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.25; letter-spacing: -.015em; font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card-link { margin-top: auto; padding-top: 27px; font-weight: 700; color: var(--accent); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.content-block h2 { margin-bottom: 18px; }
.check-list { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 32px; color: #50544d; }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .52em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(166,75,80,.08);
}
.info-panel {
    padding: 35px;
    background: var(--sage);
    color: var(--ink);
    border: 1px solid #d1d6cd;
    border-radius: var(--radius);
    box-shadow: none;
}
.info-panel h3 { margin: 0 0 16px; font-family: "Source Serif 4", Georgia, serif; font-weight: 500; font-size: 30px; }
.info-panel p { color: #656a61; }
.info-panel .mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px; }
.mini-item { padding: 18px; border: 1px solid rgba(75, 82, 72, .10); border-radius: 7px; background: rgba(255,255,255,.34); }
.mini-item strong { display: block; margin-bottom: 5px; }
.mini-item span { display: block; color: #686d64; font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: skyeye-step; }
.step { counter-increment: skyeye-step; padding: 28px; border-top: 2px solid #b88587; background: rgba(255,254,250,.62); border-radius: 0 0 var(--radius) var(--radius); box-shadow: none; }
.step::before { content: "0" counter(skyeye-step); color: var(--accent); font-weight: 700; font-size: 12px; letter-spacing: .12em; }
.step h3 { margin: 18px 0 8px; font-size: 18px; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

.rental-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.rental-category { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,254,250,.62); }
.rental-category h3 { margin: 0 0 12px; font-family: "Source Serif 4", Georgia, serif; font-weight: 500; font-size: 28px; }
.rental-category p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.contact-card { padding: 37px; border-radius: var(--radius); background: var(--paper-warm); border: 1px solid var(--line); }
.contact-card.dark { background: var(--sage); color: var(--ink); border-color: #d1d6cd; }
.contact-card h2 { margin-top: 0; font-size: clamp(34px,4vw,48px); line-height: 1.08; }
.contact-card p,
.contact-card.dark p { color: var(--muted); }
.contact-email { display: inline-block; margin-top: 20px; color: var(--accent); font-size: clamp(23px,3vw,37px); font-weight: 600; letter-spacing: -.025em; text-decoration: none; word-break: break-word; }
.contact-hints { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.contact-hints li { padding-bottom: 12px; border-bottom: 1px solid rgba(75,82,72,.12); }

.cta-section { padding: 0 0 82px; background: var(--paper); }
.cta-box {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 38px;
    align-items: center;
    padding: 49px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e3e6dd, #efede5);
    color: var(--ink);
    border: 1px solid #d4d7cf;
}
.cta-box p { margin: 0; color: #666b63; max-width: 720px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

.site-footer { background: #e8e6de; color: var(--ink); padding-top: 52px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 48px; padding-bottom: 38px; }
.footer-logo { width: 116px; height: 74px; object-fit: contain; }
.footer-grid p { color: #73776f; max-width: 360px; margin-bottom: 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links a, .footer-contact a { color: #5f645c; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom { padding-block: 18px; border-top: 1px solid rgba(75,82,72,.12); color: #8b8e87; font-size: 12px; }

@media (max-width: 980px) {
    .header-email { display: none; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-mark { display: none; }
    .cards, .cards.three, .steps { grid-template-columns: repeat(2,1fr); }
    .feature-grid, .contact-grid, .cta-box { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 690px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .header-inner { min-height: 74px; gap: 10px; }
    .brand img { width: 88px; height: 54px; }
    .main-nav { overflow-x: auto; margin-left: auto; gap: 2px; scrollbar-width: none; }
    .main-nav::-webkit-scrollbar { display: none; }
    .main-nav a { white-space: nowrap; padding: 9px 8px; font-size: 11px; }
    .hero-grid { padding-block: 58px; }
    .hero h1 { font-size: clamp(40px, 13vw, 58px); }
    .section { padding-block: 58px; }
    .cards, .cards.three, .steps, .rental-list, .info-panel .mini-grid, .footer-grid { grid-template-columns: 1fr; }
    .card { min-height: 215px; }
    .cta-section { padding-bottom: 58px; }
    .cta-box { padding: 31px 24px; }
}


/* Rental catalogue v3 */
.rental-intro { padding-bottom: 38px; }
.rental-notice { display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:end; padding:32px 0; border-bottom:1px solid var(--line); }
.rental-notice h2 { font-family:"Source Serif 4",Georgia,serif; font-weight:500; font-size:clamp(32px,4vw,48px); line-height:1.08; margin:0; }
.rental-notice p { margin:0; color:var(--muted); font-size:17px; }
.rental-jumps { display:flex; flex-wrap:wrap; gap:9px; padding-top:25px; }
.rental-jumps a { text-decoration:none; border:1px solid #d0cec5; background:rgba(255,254,250,.65); padding:9px 14px; border-radius:999px; color:#5c6158; font-size:13px; font-weight:700; }
.rental-jumps a:hover { border-color:#b5b7ae; background:var(--white); color:var(--accent); }
.bundle-stack { display:grid; gap:20px; }
.bundle-card { display:grid; grid-template-columns:330px 1fr 190px; overflow:hidden; border:1px solid var(--line); border-radius:12px; background:rgba(255,254,250,.78); box-shadow:0 8px 28px rgba(58,60,53,.035); }
.bundle-media { min-height:330px; background:var(--white); border-right:1px solid var(--line); }
.bundle-media img { width:100%; height:100%; min-height:330px; object-fit:contain; display:block; }
.bundle-content { padding:31px 34px; }
.product-kicker { color:var(--accent); font-size:11px; text-transform:uppercase; letter-spacing:.14em; font-weight:700; margin-bottom:9px; }
.bundle-content h3 { font-family:"Source Serif 4",Georgia,serif; font-weight:500; font-size:31px; line-height:1.1; margin:0 0 20px; }
.spec-list { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:9px 20px; }
.spec-list li { position:relative; padding-left:18px; color:#555a52; font-size:14px; }
.spec-list li::before { content:""; position:absolute; left:0; top:.62em; width:6px; height:6px; border-radius:50%; background:var(--accent); }
.product-note { margin:20px 0 0; color:var(--muted); font-size:14px; }
.price-panel { display:flex; flex-direction:column; align-items:stretch; justify-content:center; padding:26px; background:var(--sage); border-left:1px solid #d1d6cd; text-align:center; }
.price-panel span { font-size:12px; color:#6b7067; font-weight:600; text-transform:uppercase; letter-spacing:.08em; }
.price-panel strong { font-family:"Source Serif 4",Georgia,serif; font-weight:500; font-size:43px; margin:6px 0 20px; }
.button.compact { min-height:44px; padding:11px 14px; font-size:12px; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.product-card { overflow:hidden; display:flex; flex-direction:column; background:rgba(255,254,250,.78); border:1px solid var(--line); border-radius:10px; box-shadow:0 7px 25px rgba(58,60,53,.03); }
.product-image { aspect-ratio:1.48/1; background:#fff; border-bottom:1px solid var(--line); overflow:hidden; display:grid; place-items:center; padding:14px; }
.product-image img { width:100%; height:100%; object-fit:contain; object-position:center; display:block; }

.product-body { display:flex; flex-direction:column; flex:1; padding:24px; }
.product-topline { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.qty-badge { display:inline-flex; align-items:center; min-height:26px; padding:5px 9px; border-radius:999px; background:var(--sage); color:#596058; font-size:11px; font-weight:700; }
.unit-label { color:#8a8d86; font-size:11px; font-weight:600; }
.product-card h3 { margin:0 0 16px; font-size:19px; line-height:1.3; letter-spacing:-.012em; }
.compact-specs { list-style:none; margin:0; padding:0; display:grid; gap:7px; }
.compact-specs li { color:var(--muted); font-size:13px; padding-left:15px; position:relative; }
.compact-specs li::before { content:""; position:absolute; left:0; top:.64em; width:5px; height:5px; background:#aeb4a9; border-radius:50%; }
.product-bottom { margin-top:auto; padding-top:22px; display:flex; align-items:end; justify-content:space-between; gap:15px; border-top:1px solid var(--line); margin-top:22px; }
.product-price { font-family:"Source Serif 4",Georgia,serif; font-size:31px; line-height:1; color:var(--ink); }
.text-link { color:var(--accent); font-size:12px; font-weight:700; text-decoration:none; white-space:nowrap; }
.text-link:hover { color:var(--accent-dark); }
.rental-mail-panel { display:flex; flex-direction:column; align-items:flex-start; }
.rental-phone { display:inline-block; margin-top:16px; font-size:22px; font-weight:600; text-decoration:none; color:var(--accent); }
.contact-details { display:flex; flex-direction:column; align-items:flex-start; }
.contact-phone { display:inline-block; margin-top:8px; color:var(--ink); font-size:clamp(22px,2.6vw,32px); font-weight:600; letter-spacing:-.02em; text-decoration:none; }
.contact-location { margin-top:28px; padding-top:24px; border-top:1px solid rgba(75,82,72,.14); }
.contact-location span { display:block; color:var(--accent); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.14em; margin-bottom:8px; }
.contact-location strong { display:block; max-width:520px; font-family:"Source Serif 4",Georgia,serif; font-weight:500; font-size:26px; line-height:1.2; }
.footer-location { color:#73776f; font-size:12px; line-height:1.5; max-width:260px; }

@media (max-width:1080px) {
  .bundle-card { grid-template-columns:260px 1fr; }
  .price-panel { grid-column:1/-1; flex-direction:row; align-items:center; justify-content:flex-end; gap:18px; border-left:0; border-top:1px solid #d1d6cd; text-align:left; }
  .price-panel strong { margin:0 auto 0 0; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:760px) {
  .rental-notice { grid-template-columns:1fr; gap:15px; }
  .bundle-card { grid-template-columns:1fr; }
  .bundle-media { border-right:0; border-bottom:1px solid var(--line); min-height:250px; }
  .bundle-media img { min-height:250px; }
  .bundle-content { padding:25px 22px; }
  .spec-list { grid-template-columns:1fr; }
  .price-panel { grid-column:auto; flex-wrap:wrap; padding:22px; }
  .price-panel strong { font-size:36px; }
  .product-grid { grid-template-columns:1fr; }
  .product-image { aspect-ratio:1.6/1; }
}


/* Service content v4 */
.service-showcase-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.service-showcase-card { overflow:hidden; border:1px solid var(--line); border-radius:12px; background:rgba(255,254,250,.74); }
.service-showcase-image { display:block; height:300px; overflow:hidden; background:var(--paper-deep); }
.service-showcase-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.service-showcase-card:hover .service-showcase-image img { transform:scale(1.025); }
.service-showcase-body { padding:30px; }
.service-showcase-body h3 { margin:0 0 14px; font-family:"Source Serif 4",Georgia,serif; font-size:31px; line-height:1.12; font-weight:500; }
.service-showcase-body p { margin:0 0 22px; color:var(--muted); font-size:15px; }
.editorial-split { display:grid; grid-template-columns:.82fr 1.18fr; gap:58px; align-items:center; }
.editorial-image { overflow:hidden; border-radius:10px; min-height:470px; background:var(--paper-deep); }
.editorial-image img { width:100%; height:100%; min-height:470px; object-fit:cover; display:block; }
.editorial-copy h2, .experience-intro h2 { font-family:"Source Serif 4",Georgia,serif; font-weight:500; font-size:clamp(35px,4.4vw,54px); line-height:1.07; letter-spacing:-.025em; margin:0 0 20px; }
.editorial-copy p { color:var(--muted); font-size:17px; margin:0 0 16px; }
.experience-intro { display:grid; grid-template-columns:1fr 1fr; gap:58px; align-items:start; margin-bottom:44px; }
.experience-copy p { color:var(--muted); font-size:16px; margin:0 0 16px; }
.experience-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.experience-item { min-height:175px; padding:27px; border:1px solid #d1d6cd; background:rgba(255,254,250,.5); border-radius:9px; display:flex; flex-direction:column; justify-content:space-between; }
.experience-item strong { font-family:"Source Serif 4",Georgia,serif; font-size:45px; font-weight:500; color:var(--accent); line-height:1; }
.experience-item span { font-size:14px; font-weight:600; color:#555a52; }
@media (max-width:900px) {
  .service-showcase-grid, .editorial-split, .experience-intro { grid-template-columns:1fr; }
  .editorial-image { min-height:340px; max-height:520px; }
  .editorial-image img { min-height:340px; }
  .experience-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:590px) {
  .service-showcase-grid, .experience-grid { grid-template-columns:1fr; }
  .service-showcase-image { height:250px; }
}

/* Rental catalogue v5 */
.product-card h3{font-size:22px;line-height:1.18;}
.product-grid{align-items:stretch;}
.product-image{min-height:250px;}
@media(max-width:760px){.product-image{min-height:220px;padding:10px;}}
