/* Irish Channel Landscaping */
:root {
  --paper: #F7F5F1;
  --logo-ground: #EFECE7;
  --wash: #E6E2DA;
  --white: #FFFFFF;
  --ink: #302F2D;
  --muted: #5A5854;
  --leaf: #8AA7A8;
  --leaf-deep: #3F5E5F;
  --ground: #232C2A;
  --ground-deep: #1B2220;
  --on-ground: #EFECE7;
  --on-ground-muted: #B9C2BF;
  --line: #D8D3C8;
  --control-edge: #8C877D;

  --wrap: 1160px;
  --gutter: 20px;
  --radius: 6px;

  --font-display: 'Italiana', 'Didot', 'Bodoni 72', Georgia, serif;
  --font-body: 'Jost', 'Futura', 'Century Gothic', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: .01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 1.5rem + 3.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: inherit; }

a { color: var(--leaf-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
svg { width: 18px; height: 18px; flex: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 12px 18px; }
.skip:focus { left: 8px; top: 8px; }
:where(a, button, summary):focus-visible { outline: 3px solid var(--leaf-deep); outline-offset: 2px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--leaf-deep);
  margin: 0 0 12px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
a.btn:hover, a.btn:visited { text-decoration: none; }
a.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
a.btn-ink:hover { background: var(--ground-deep); border-color: var(--ground-deep); color: var(--white); }
a.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
a.btn-outline:hover { background: var(--ink); color: var(--paper); }
a.btn-leaf { background: var(--leaf); color: var(--ground-deep); border-color: var(--leaf); }
a.btn-leaf:hover { background: var(--on-ground); border-color: var(--on-ground); color: var(--ground-deep); }
a.btn-ghost { background: transparent; color: var(--on-ground); border-color: var(--on-ground-muted); }
a.btn-ghost:hover { border-color: var(--on-ground); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
  background: var(--logo-ground);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
}
.site-header > .bar {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: 10px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: 0 1 auto; min-width: 0; }
.brand-link img { height: 64px; width: 64px; }
.brand-name { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; line-height: 1.1; letter-spacing: .04em; color: var(--ink); }
.nav-desktop { display: flex; align-items: center; gap: 24px; }
.nav-desktop a { color: var(--ink); text-decoration: none; font-size: .96rem; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-desktop a:hover { border-bottom-color: var(--leaf-deep); }
.nav-desktop a[aria-current="page"] { color: var(--leaf-deep); border-bottom-color: var(--leaf-deep); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-cta .btn { padding: 10px 18px; font-size: .95rem; }
.header-cta .btn-text { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--control-edge);
  border-radius: 999px;
  color: var(--ink);
  padding: 9px 14px;
  font: 600 .95rem/1 var(--font-body);
  align-items: center; gap: 8px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle .bars { display: inline-block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

.nav-mobile {
  display: none;
  flex-direction: column; align-items: stretch;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 6px var(--gutter) 20px;
}
.nav-mobile[data-open="true"] { display: flex; }
.site-header .nav-mobile a:not(.btn) { display: block; color: var(--ink); text-decoration: none; font-size: 1.05rem; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.site-header .nav-mobile a.btn { margin-top: 14px; }

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .header-cta .btn-text { display: inline; }
  .header-cta .btn-number { display: none; }
  .header-cta .btn { padding: 10px 16px; }
  .brand-link img { height: 52px; width: 52px; }
  .brand-name { font-size: 1.02rem; }
  .site-header > .bar { gap: 10px; }
}
@media (max-width: 400px) {
  .nav-toggle .toggle-label { display: none; }
  .brand-name { font-size: .92rem; }
}

/* Hero */
.hero { background: var(--logo-ground); padding: clamp(36px, 6vw, 84px) 0; }
.hero-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { max-width: 16ch; }
.hero .lede { font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem); max-width: 54ch; }
.hero .btn-row { margin-top: 28px; }
.hero-note { margin-top: 18px; font-size: .95rem; color: var(--muted); }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 180px 180px var(--radius) var(--radius); }
@media (max-width: 879px) { .hero-media img { aspect-ratio: 4 / 3; border-radius: 120px 120px var(--radius) var(--radius); } }

.page-head { background: var(--logo-ground); padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.page-head h1 { max-width: 22ch; margin-bottom: .3em; }
.page-head .lede { font-size: clamp(1.04rem, .98rem + .3vw, 1.2rem); max-width: 62ch; }

.crumbs { font-size: .88rem; padding: 14px 0; color: var(--muted); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--muted); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--muted); }

/* Sections */
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section-alt { background: var(--wash); }
.section-head { max-width: 64ch; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (min-width: 1040px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card.card-call { background: var(--ground); border-color: var(--ground); }
.card.card-call h3 { color: var(--on-ground); }
.card.card-call p { color: var(--on-ground-muted); }
.card.card-call .btn-row { margin-top: auto; }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.card-media { aspect-ratio: 4 / 3; background: var(--wash); position: relative; overflow: hidden; }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { margin: 0; }
.card p { color: var(--muted); margin: 0; }
.card-link { margin-top: auto; font-weight: 600; color: var(--leaf-deep); text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.card-link::after { content: "\00a0\2192"; }

.steps { counter-reset: step; }
.steps .card-body h3::before { counter-increment: step; content: counter(step) ". "; color: var(--leaf-deep); }

.props { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.prop .rule { width: 40px; height: 3px; background: var(--leaf); margin-bottom: 14px; }
.prop p { margin: 0; }

.prose { max-width: 68ch; }
.prose-solo { margin-inline: auto; }
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

.split { display: grid; gap: clamp(28px, 4vw, 52px); align-items: start; grid-template-columns: 1fr; }
@media (min-width: 880px) { .split { grid-template-columns: 1.15fr .85fr; } }
.split-media img { border-radius: var(--radius); width: 100%; }

.pair { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pair figure { margin: 0; }
.pair img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.pair figcaption { font-size: .9rem; color: var(--muted); padding-top: 8px; }
.pair .tag { display: inline-block; font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf-deep); margin-right: 6px; }

.gallery { columns: 3 280px; column-gap: 16px; }
.gallery figure { margin: 0 0 16px; break-inside: avoid; }
.gallery img { width: 100%; border-radius: var(--radius); }
.gallery figcaption { font-size: .9rem; color: var(--muted); padding-top: 8px; }

.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 18px 20px; font-weight: 600; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--leaf-deep); }
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 20px 18px; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips a { display: inline-block; border: 1px solid var(--control-edge); background: var(--white); border-radius: 999px; padding: 8px 16px; text-decoration: none; color: var(--ink); font-size: .95rem; }
.chips a:hover { border-color: var(--ink); }


.methods { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.method { border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); padding: 22px; }
.method h3 { margin-bottom: .3em; }
.method p { margin: 0 0 .7em; color: var(--muted); font-size: .96rem; }
.method .big { font-weight: 600; font-size: 1.2rem; color: var(--ink); text-decoration: none; word-break: break-word; }
.method .big:hover { text-decoration: underline; }

/* Dark grounds */
.cta-band { background: var(--ground); color: var(--on-ground); padding: clamp(44px, 6vw, 76px) 0; }
.cta-band h2 { color: var(--on-ground); }
.cta-band p { color: var(--on-ground-muted); max-width: 60ch; }
.cta-band a:not(.btn) { color: var(--leaf); }
.cta-band .btn-row { margin-top: 24px; }

.site-footer { background: var(--ground-deep); color: var(--on-ground); padding: clamp(44px, 6vw, 72px) 0 28px; }
.site-footer h2 { color: var(--on-ground); font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1em; }
.site-footer p { color: var(--on-ground-muted); font-size: .95rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:not(.btn) { color: var(--on-ground); text-decoration: none; font-size: .95rem; }
.site-footer a:not(.btn):hover { color: var(--leaf); text-decoration: underline; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-logo { width: 110px; height: 110px; margin-bottom: 16px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(239,236,231,.16); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.site-footer .footer-bottom p, .site-footer .footer-bottom a:not(.btn) { font-size: .88rem; color: var(--on-ground-muted); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }

.preview-bar { background: var(--ink); color: var(--paper); font-size: .85rem; text-align: center; padding: 6px var(--gutter); }

.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.review-card h3 { margin: 0; }
.review-card blockquote { margin: 0; }
.review-card blockquote p { font-size: 1.08rem; }
.review-stars { color: var(--leaf-deep); font-size: 1.2rem; letter-spacing: .12em; line-height: 1; }
.review-kind { margin: 0; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf-deep); }
.review-by { margin: 0; color: var(--muted); font-size: .92rem; }
.review-by strong { color: var(--ink); }
.pair-collage img { aspect-ratio: auto; object-fit: contain; }

.sms-note { font-size: .82rem; line-height: 1.5; color: var(--muted); max-width: 60ch; margin: 12px 0 0; }
.cta-band .sms-note, .card.card-call .sms-note { color: var(--on-ground-muted); }
.card.card-call a:not(.btn) { color: var(--leaf); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-grid { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: start; }
.contact-side .methods { grid-template-columns: 1fr; }
.contact-main, .contact-side { min-width: 0; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(260px, 340px) 1fr; }
  .contact-side { position: sticky; top: 104px; }
}
.ghl-form { display: block; width: 100%; border: 0; }
.ghl-form { height: 1970px; }
@media (min-width: 390px) { .ghl-form { height: 1840px; } }
@media (min-width: 414px) { .ghl-form { height: 1730px; } }
@media (min-width: 600px) { .ghl-form { height: 1490px; } }
@media (min-width: 768px) { .ghl-form { height: 1430px; } }
@media (min-width: 900px) { .ghl-form { height: 1550px; } }
@media (min-width: 1000px) { .ghl-form { height: 1470px; } }
@media (min-width: 1100px) { .ghl-form { height: 1430px; } }
@media (min-width: 1200px) { .ghl-form { height: 1390px; } }

.sister { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--leaf); border-radius: var(--radius); padding: 26px 28px; max-width: 760px; }
.sister h2 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem); }
.sister p { color: var(--muted); }
.sister .btn { margin-top: 6px; }

.notfound { padding: clamp(60px, 9vw, 120px) 0; text-align: center; }
.notfound .btn-row { justify-content: center; }
