@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,700;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@600;700&family=Cormorant+Garamond:ital,wght@0,500;0,700;1,500;1,700&display=swap");

/* Top Cut Gardens — Homepage styles (index.css)
   Page-specific stylesheet. No shared/global CSS. */

/* ------------------------------
   Base / Reset
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #111827; /* zinc-900 */
  background: #f3f3f3; /* subtle neutral grey, matches logo background */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #0f766e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
:focus-visible {
  outline: 3px solid #0ea5e9;
  margin: 40px auto 0;

  outline-offset: 2px;
}

/* ------------------------------
   Layout helpers
------------------------------ */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.section {
  padding: 72px 0;
}
.section--alt {
  background: #f8fafc;
}
.section__lead {
  max-width: 68ch;
  color: #334155;
}

/* ------------------------------
   Buttons
------------------------------ */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid transparent;
}
.btn--primary {
  background: #16a34a; /* green-600 */
  color: #ffffff;
}
.btn--primary:hover {
  background: #15803d;
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  border-color: #16a34a;
  color: #166534;
}
.btn--ghost:hover {
  background: #ecfdf5;
  text-decoration: none;
}

/* ------------------------------
   Header / Nav
------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffffcc; /* translucent */
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid #e5e7eb;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo img {
  display: block;
}

.nav__toggle {
  display: none;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  color: #0f172a;
  font-weight: 600;
}
.nav__list a[aria-current="page"] {
  color: #16a34a;
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
  }
}

/* ------------------------------
   Skip link
------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #0ea5e9;
  color: #fff;
}

/* ------------------------------
   Hero
------------------------------ */
.hero {
  padding: 12px 0 24px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero__copy {
  grid-column: 1 / -1;
  text-align: center;
}

.hero__copy h1 {
  margin: 0;
  padding: 4px 0;
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-size: clamp(38px, 3.4vw, 60px);
  letter-spacing: 1px;
  text-transform: none;
  color: #0b0f19;
}

.hero__tagline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: #1e293b;
  text-align: center;
  max-width: 75ch;
  margin: 8px auto 0;
  padding: 0 16px;
}

.hero__tagline span {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero__copy p {
  max-width: 68ch;
  margin-inline: auto; /* center the paragraph under the title */
}

.hero__subtext {
  text-align: center;
  max-width: 70ch;
  margin: 16px auto 0;
  font-size: 1.125rem; /* ~18px */
  line-height: 1.7;
  color: #334155; /* slate-700 */
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}
.hero__subtext strong {
  color: #0b0f19; /* darker for subtle emphasis */
  font-weight: 600;
}

.hero__cta {
  justify-content: center; /* center the buttons */
}

.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.hero__media img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
  width: 100%;
  max-width: 1100px; /* wider image but still contained */
  height: auto;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   Credentials Row — refined
------------------------------ */
.usps {
  padding: 32px 0 12px;
  text-align: center;
}

.usps__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.usps__badges p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px); /* match hero h3 size */
  color: #0f172a; /* same deep navy tone as your h3 */
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

/* Desktop alignment: row layout */
@media (min-width: 768px) {
  .usps__badges {
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }
}

/* ------------------------------
   Cards (Services on homepage)
------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
}
.card__body {
  padding: 16px;
}
.card h3 {
  margin: 8px 0;
}
.card p {
  color: #475569;
}
@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   Gallery (Recent work)
------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.gallery__item img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.gallery__item figcaption {
  padding: 10px 12px;
  font-size: 14px;
  color: #475569;
}
@media (max-width: 860px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   Quotes / Testimonials
------------------------------ */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
}
.quote p {
  margin: 0 0 6px;
  font-size: 18px;
}
.quote footer {
  color: #475569;
}
@media (max-width: 700px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   Forms
------------------------------ */
.form {
  margin-top: 12px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field {
  display: grid;
  gap: 6px;
}
label {
  font-weight: 600;
}
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font: inherit;
  background: #fff;
  color: inherit;
}
input:focus,
textarea:focus {
  border-color: #0ea5e9;
  outline: 3px solid #e0f2fe;
}
.form__actions {
  margin-top: 12px;
}
.form__note {
  color: #475569;
  font-size: 14px;
}
@media (max-width: 720px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   Footer
------------------------------ */
.site-footer {
  background: #0b0f19;
  color: #e5e7eb;
  margin-top: 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  padding: 28px 0;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer__links a {
  color: #cbd5e1;
}
.footer__legal {
  grid-column: 1 / -1;
  color: #94a3b8;
}
@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__legal {
    margin-top: 8px;
  }
}

/* ------------------------------
   Headings
------------------------------ */
h1,
h2,
h3 {
  line-height: 1.2;
}
h2 {
  font-size: clamp(24px, 2vw, 34px);
  margin: 0 0 8px;
}
h3 {
  font-size: 20px;
}

/* ------------------------------
   Page-specific tweaks
------------------------------ */
.hero .btn {
  min-width: 150px;
  text-align: center;
}

/* Nice subtle focus styles on header links */
.nav__list a:focus-visible {
  outline-color: #16a34a;
}

/* Trigger pipeline: Nov 9 test */
