:root {
  --sea: #196f7a;
  --sea-deep: #0d3f48;
  --coral: #f47f5c;
  --gold: #f3c15e;
  --mint: #bfe6d7;
  --paper: #fffaf0;
  --cream: #f7efe1;
  --ink: #182026;
  --muted: #667078;
  --line: rgba(25, 111, 122, 0.18);
  --shadow: 0 30px 80px rgba(12, 42, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 10%, rgba(244, 127, 92, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(25, 111, 122, 0.18), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0, #f5ead8 48%, #d9eee8 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(25, 111, 122, 0.1);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--sea-deep);
  color: #fff;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(244, 127, 92, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 20px;
}

.brand small {
  color: rgba(24, 32, 38, 0.68);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
}

nav a,
.button {
  border: 1px solid rgba(25, 111, 122, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sea-deep);
  padding: 11px 16px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
.button:hover {
  background: var(--sea);
  color: #fff;
}

main {
  width: min(1640px, calc(100% - 34px));
  margin: 0 auto;
  padding: 16px 0 42px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(13, 63, 72, 0.9) 0, rgba(13, 63, 72, 0.66) 45%, rgba(13, 63, 72, 0.12) 100%),
    url("assets/photos/facade.webp") center 42% / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -70px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(255, 250, 240, 0.18), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: clamp(28px, 5vw, 68px);
  color: #fff;
}

.eyebrow,
.tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(244, 127, 92, 0.55);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--sea-deep);
  padding: 8px 13px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 850px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 78px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.lead,
.muted,
.section p,
footer {
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.hero .lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 19px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button.primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 2;
  width: min(420px, calc(100% - 44px));
  border: 1px solid rgba(255, 250, 240, 0.44);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--sea-deep);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-card img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 14px;
}

.hero-card span {
  color: var(--sea);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1;
}

.hero-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--sea);
  color: #fff;
  padding: 12px 16px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.86);
  padding: clamp(18px, 2.4vw, 30px);
  box-shadow: 0 10px 24px rgba(12, 42, 48, 0.07);
}

.story,
.product-list,
.local-seo {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.story {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(255, 250, 240, 0.78)),
    radial-gradient(circle at 100% 0, rgba(25, 111, 122, 0.16), transparent 22rem);
}

.gallery {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 225, 0.92)),
    radial-gradient(circle at 100% 0, rgba(244, 127, 92, 0.18), transparent 20rem);
}

.gallery-head {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(25, 111, 122, 0.18);
  border-radius: 16px;
  background: #f4ead8;
}

.gallery-grid figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--sea-deep);
  padding: 10px 12px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.intro-grid,
.contact-grid,
.mini-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-grid article,
.contact-grid article,
.product-columns article,
.mini-content article {
  border: 1px solid rgba(25, 111, 122, 0.14);
  border-radius: 16px;
  background: var(--paper);
  padding: 18px;
}

.intro-grid h2,
.intro-grid p,
.contact-grid p,
.mini-content p {
  margin-top: 14px;
}

.mini-content {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.72)),
    radial-gradient(circle at 100% 0, rgba(243, 193, 94, 0.2), transparent 18rem);
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(247, 239, 225, 0.94), rgba(255, 250, 240, 0.84)),
    radial-gradient(circle at 100% 20%, rgba(25, 111, 122, 0.2), transparent 18rem);
}

.schedule {
  display: grid;
  gap: 8px;
}

.schedule div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  border: 1px solid rgba(25, 111, 122, 0.14);
  border-radius: 14px;
  background: var(--paper);
  padding: 11px 14px;
  font-family: Arial, sans-serif;
}

.schedule strong {
  color: var(--sea);
}

.local-seo {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(255, 250, 240, 0.62)),
    repeating-linear-gradient(90deg, rgba(25, 111, 122, 0.12) 0 1px, transparent 1px 110px),
    linear-gradient(135deg, rgba(25, 111, 122, 0.24), rgba(244, 127, 92, 0.16));
}

.local-seo h2,
.local-seo p {
  color: var(--ink);
}

.local-seo-content {
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(25, 111, 122, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(25, 111, 122, 0.12);
}

.local-seo-content p + p {
  margin-top: 12px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(244, 127, 92, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sea-deep);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.short-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 225, 0.9)),
    radial-gradient(circle at 100% 0, rgba(244, 127, 92, 0.18), transparent 18rem);
}

.short-note p {
  max-width: 900px;
  color: var(--ink);
}

footer {
  width: min(1640px, calc(100% - 34px));
  margin: 0 auto;
  padding: 0 0 36px;
  font-size: 14px;
  text-align: center;
}

footer p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

footer a {
  color: var(--sea);
  font-weight: 800;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .site-header,
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-card {
    right: 22px;
    left: 22px;
    width: auto;
  }

  .story,
  .product-list,
  .local-seo,
  .schedule-wrap {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .contact-grid,
  .gallery-grid,
  .product-columns,
  .mini-content {
    grid-template-columns: 1fr;
  }

  .short-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid figure:first-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  main,
  footer {
    width: calc(100% - 22px);
  }

  .hero {
    min-height: 590px;
    border-radius: 18px;
  }

  .hero-copy,
  .section {
    padding: 22px;
    border-radius: 22px;
  }

  h1 {
    font-size: 44px;
  }

  .schedule div {
    grid-template-columns: 1fr;
  }
}
