@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ivory: #f4f0e8;
  --cream: #fbf8f1;
  --sage: #425b3f;
  --deep: #173f2a;
  --soft: #6f8066;
  --text: #2a2a24;
  --muted: #68665d;
  --line: #d8d1c5;
  --white: #fffdf8;
  --shadow: 0 22px 55px rgba(23, 63, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "Inter", "Avenir Next", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 128, 102, 0.14), transparent 22%),
    radial-gradient(circle at 82% 36%, rgba(216, 209, 197, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(244, 240, 232, 0.08));
  z-index: -2;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  background: rgba(251, 248, 241, 0.96);
  border-bottom: 1px solid rgba(216, 209, 197, 0.72);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-logo,
.brand svg {
  width: 52px;
  height: 52px;
  color: var(--sage);
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 0.94;
  letter-spacing: 0;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 20px);
  font-size: 12px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #22231e;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.phone-link svg {
  width: 15px;
  height: 15px;
  color: var(--sage);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(66, 91, 63, 0.42);
  background: transparent;
  color: var(--deep);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage), var(--deep));
  transform: translateY(101%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn:hover {
  color: var(--cream);
  border-color: var(--sage);
  transform: translateY(-1px);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.btn-primary::before {
  background: var(--deep);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--deep);
}

.mobile-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 248, 241, 0.96) 0%, rgba(251, 248, 241, 0.72) 32%, rgba(23, 63, 42, 0.06) 62%, rgba(23, 63, 42, 0.18) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 78px 34px 68px;
  display: grid;
  grid-template-columns: minmax(330px, 560px) 1fr;
  align-items: center;
  gap: 26px;
}

.hero-copy h1 {
  margin: 0 0 27px;
  max-width: 550px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-copy p {
  margin: 0 0 32px;
  max-width: 470px;
  color: #33352e;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.icon-line svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.3;
}

.hero-info {
  position: relative;
  color: var(--cream);
  padding: 0 24px;
  background: transparent;
}

.hero-info .container {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px 48px;

  background: linear-gradient(135deg, var(--deep), var(--sage));
  border-radius: 60px 0 60px 0;
}


.hero-info svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.25;
}

.hero-info p {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 34px;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section-tight {
  padding: 60px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::after,
.eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--line);
}

.eyebrow::before {
  display: none;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading .eyebrow::before {
  display: block;
}

.section-heading h2,
.split-copy h2,
.contact-form h2,
.zone-copy h2 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 600;
}

.section-heading p,
.split-copy p,
.zone-copy p {
  margin: 0;
  color: var(--muted);
}

.service-strip {
  padding: 40px 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(65, 89, 65, 0.22);
  border-radius: 22px 0 22px 0;
  overflow: hidden;
  background: rgba(251, 248, 241, 0.65);
}

.service-item {
  padding: 34px 22px;
  text-align: center;
  position: relative;
}

.service-item:not(:last-child) {
  border-right: 1px solid rgba(65, 89, 65, 0.16);
}

.service-item svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--deep);
  stroke-width: 1.6;
}

.service-item h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.service-item p {
  margin: 0;
  color: rgba(40, 40, 35, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: stretch; /* important */
}

.split-media {
  height: 100%;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.split-media:hover img,
.image-card:hover img,
.activity-card:hover img {
  transform: scale(1.08);
}

.split-copy {
  max-width: 550px;
}

.split-copy p + p {
  margin-top: 18px;
}

.note-box {
  margin-top: 30px;
  padding: 18px 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.72);
  color: var(--muted);
  font-size: 13px;
}

.note-box svg {
  width: 28px;
  height: 28px;
  color: var(--sage);
  flex: 0 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.image-card,
.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: 0 16px 35px rgba(23, 63, 42, 0.12);
  transform: translateZ(0);
}

.image-card img,
.activity-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.activity-card img {
  height: auto;
  aspect-ratio: 12 / 7;
}

.card-body {
  min-height: 180px;
  padding: 28px 28px 26px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(66, 91, 63, 0.98), rgba(23, 63, 42, 0.9));
}

.activity-card .card-body {
  position: absolute;
  inset: auto 0 0;
  min-height: 116px;
  background: linear-gradient(180deg, rgba(23, 63, 42, 0.12), rgba(23, 63, 42, 0.94) 34%, rgba(66, 91, 63, 0.97));
}

.card-body svg {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  stroke-width: 1.3;
}

.card-body h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
}

.activity-card .card-body h3 {
  font-size: 24px;
}

.card-body p,
.card-body li {
  margin: 0;
  color: rgba(251, 248, 241, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.card-body ul {
  padding: 0;
  margin: 17px 0 0;
  list-style: none;
}

.card-body li {
  position: relative;
  padding-left: 24px;
  margin-top: 8px;
}

.card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 3px var(--sage);
}

.plain-card {
  min-height: 230px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.72);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.plain-card:hover {
  transform: translateY(-7px);
  border-color: rgba(66, 91, 63, 0.38);
  box-shadow: var(--shadow);
}

.plain-card svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  color: var(--sage);
  stroke-width: 1.25;
}

.plain-card h3 {
  margin: 0 0 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.plain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 46px;
  border-top: 1px dashed rgba(66, 91, 63, 0.45);
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  font-weight: 700;
}

.step svg {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  color: var(--sage);
  stroke-width: 1.25;
}

.step h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.expertise-band,
.commitment-band {
  padding: 58px 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 0%, rgba(111, 128, 102, 0.5), transparent 26%),
    linear-gradient(135deg, var(--deep), var(--sage));
}

.band-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
  color: rgba(251, 248, 241, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.band-title::before,
.band-title::after {
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(251, 248, 241, 0.32);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.expertise-item {
  text-align: center;
  padding: 0 30px;
  border-right: 1px solid rgba(251, 248, 241, 0.33);
}

.expertise-item:last-child {
  border-right: 0;
}

.expertise-item svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  stroke-width: 1.25;
}

.expertise-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.expertise-item span {
  display: block;
  margin-top: 7px;
  color: rgba(251, 248, 241, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.banner-story {
  padding: 0;
  overflow: hidden;
  background: var(--cream);
}

.story-inner {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.story-media {
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 63, 42, 0.42), transparent 54%);
}

.story-copy {
  padding: 56px 34px 56px 70px;
  max-width: 620px;
}

.story-copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.02;
}

.story-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.icon-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.icon-list-item {
  text-align: center;
}

.icon-list-item svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 11px;
  color: var(--sage);
  stroke-width: 1.25;
}

.icon-list-item strong {
  display: block;
  font-size: 13px;
}

.cta-photo {
  position: relative;
  min-height: 310px;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.cta-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 63, 42, 0.86), rgba(23, 63, 42, 0.66) 42%, rgba(23, 63, 42, 0.2));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 62px 34px;
}

.cta-content h2 {
  margin: 0 0 16px;
  max-width: 540px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(41px, 5vw, 59px);
  line-height: 1.02;
}

.cta-content p {
  max-width: 520px;
  margin: 0 0 25px;
  color: rgba(251, 248, 241, 0.86);
}

.site-footer {
  background: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 1.15fr;
  gap: 80px;
  padding: 55px 34px 48px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-main p,
.footer-main a {
  color: var(--muted);
  font-size: 13px;
}

.footer-title {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex: 0 0 auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
}

.footer-bottom {
  min-height: 56px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(251, 248, 241, 0.9);
  background: linear-gradient(135deg, var(--sage), var(--deep));
  font-size: 12px;
}

.footer-mark {
  color: rgba(251, 248, 241, 0.62);
  display: inline-grid;
  place-items: center;
}

.footer-mark svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.4;
}

.skywebis-signature {
  margin: 0;
  justify-self: end;
}

.skywebis-signature a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 248, 241, 0.74);
}

.contact-card svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  color: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 50%;
  stroke-width: 1.3;
}

.contact-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.contact-card p {
  margin: 0;
  color: var(--sage);
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: stretch;
}


.contact-form {
  padding: 46px 44px;
  border-radius: 18px;
  background: rgba(251, 248, 241, 0.86);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(66, 91, 63, 0.09);
}

.form-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-side img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.contact-side-copy {
  padding-top: 24px;
}

.contact-side-copy h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
}

.zone-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.map-visual {
  position: relative;
  min-height: 330px;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(111, 128, 102, 0.22), transparent 15%),
    radial-gradient(circle at 16% 70%, rgba(111, 128, 102, 0.18), transparent 13%),
    linear-gradient(140deg, #efe9de, #fbf8f1);
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(66, 91, 63, 0.22);
  border-radius: 50%;
}

.map-visual::after {
  inset: 74px 118px;
}

.map-pin {
  position: absolute;
  left: 53%;
  top: 45%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 50% 4px;
  rotate: -45deg;
  background: var(--sage);
  box-shadow: 0 13px 35px rgba(23, 63, 42, 0.22);
}

.map-pin svg {
  width: 38px;
  height: 38px;
  color: var(--cream);
  rotate: 45deg;
}

.map-label {
  position: absolute;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.map-label.one {
  left: 24%;
  top: 22%;
}

.map-label.two {
  left: 26%;
  bottom: 22%;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(251, 248, 241, 0.7);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 18px 24px;
  text-align: left;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 140px;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--ivory);
  opacity: 0;
}

.float-shape {
  position: absolute;
  pointer-events: none;
  color: rgba(66, 91, 63, 0.12);
}

.float-shape svg {
  width: 150px;
  height: 150px;
  stroke-width: 0.7;
}

@media (max-width: 1240px) {
  .header-inner {
    grid-template-columns: 250px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 0 24px;
  }

  .main-nav {
    gap: 13px;
    font-size: 12px;
  }

  .phone-link {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(300px, 520px) 1fr;
  }

  .service-grid,
  .cards-grid.four {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout,
  .zone-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .brand-name {
    font-size: 27px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 26px;
    border-bottom: 1px solid rgba(216, 209, 197, 0.42);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 650px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(251, 248, 241, 0.96), rgba(251, 248, 241, 0.8) 50%, rgba(23, 63, 42, 0.2));
  }

  .hero-inner {
    padding: 58px 22px 36px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-info .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .container,
  .cta-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding: 66px 0;
  }

  .split,
  .split.reverse,
  .story-inner,
  .footer-main,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 36px;
  }

  .service-grid,
  .cards-grid,
  .cards-grid.four,
  .timeline,
  .expertise-grid,
  .icon-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .expertise-item:nth-child(2n),
  .expertise-item:last-child {
    border-right: 0;
  }

  .expertise-item {
    padding: 22px 18px;
    border-bottom: 1px solid rgba(251, 248, 241, 0.24);
  }

  .story-copy {
    padding: 42px 22px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 22px;
    text-align: center;
  }

  .skywebis-signature {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 47px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .service-grid,
  .cards-grid,
  .cards-grid.four,
  .timeline,
  .expertise-grid,
  .icon-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 209, 197, 0.42);
  }

  .activity-card img,
  .image-card img {
    height: 240px;
  }

  .activity-card .card-body {
    position: relative;
  }

  .band-title::before,
  .band-title::after {
    width: 42px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ==== Articles / Conseils (SEO content) ==== */
.article-head { padding: 150px 0 30px; text-align: center; }
.article-head .eyebrow { justify-content: center; }
.article-head h1 { max-width: 900px; margin: 14px auto 16px; }
.article-meta { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.article-cover { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.article-cover img { width: 100%; height: clamp(260px, 42vw, 460px); object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.article-body { max-width: 760px; margin: 0 auto; padding: 8px 24px 0; }
.article-body h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(28px, 3.4vw, 38px); color: var(--deep); margin: 46px 0 16px; line-height: 1.12; }
.article-body h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; color: var(--sage); margin: 30px 0 10px; }
.article-body p { margin: 0 0 18px; line-height: 1.78; color: var(--text); font-size: 17px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 22px; color: var(--text); line-height: 1.7; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--deep); }
.article-body .lead { font-size: 19px; color: var(--muted); }
.article-toc { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; margin: 26px 0 34px; }
.article-toc strong { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.article-toc a { color: var(--text); text-decoration: none; }
.article-toc a:hover { color: var(--sage); }
.article-cta-inline { margin: 40px auto; max-width: 760px; }

/* Menu à 7 entrées : on masque le téléphone de la barre du haut pour éviter
   tout débordement (le numéro reste très visible : bouton CTA, hero, footer,
   page contact). */
.header-actions .phone-link { display: none; }
@media (max-width: 1400px) {
  .main-nav { gap: 12px; }
}
