:root {
  --ink: #151411;
  --muted: #6f6a61;
  --paper: #f7f3ec;
  --ivory: #fffaf1;
  --line: rgba(21, 20, 17, 0.14);
  --copper: #a65f3a;
  --moss: #415447;
  --sea: #244c5b;
  --charcoal: #22201c;
  --shadow: 0 22px 60px rgba(31, 28, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  align-items: center;
  background: rgba(18, 17, 14, 0.42);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(21, 20, 17, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

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

.brand-logo {
  border: 1px solid rgba(255, 255, 255, 0.28);
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  justify-content: center;
}

.nav-links a,
.header-action {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 600;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 10px 18px;
}

.hero {
  color: #fff;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  position: relative;
}

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

.ocean-live {
  bottom: 0;
  height: 52%;
  left: 0;
  opacity: 0.7;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.ocean-live canvas {
  height: 100%;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.48;
  position: absolute;
  width: 100%;
}

.ocean-live::before,
.ocean-live::after {
  animation: ocean-glow 10s ease-in-out infinite alternate;
  background:
    radial-gradient(ellipse at 28% 76%, rgba(255, 248, 214, 0.22), transparent 32%),
    radial-gradient(ellipse at 68% 68%, rgba(97, 188, 204, 0.18), transparent 36%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  filter: blur(8px);
  inset: 16% -18%;
  position: absolute;
  transform: translateX(-8%);
}

.ocean-live::after {
  animation-delay: -4s;
  opacity: 0.6;
  transform: translateX(8%) scaleY(0.72);
}

.ocean-live span {
  animation: wave-drift 12s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  border-radius: 50%;
  height: 2px;
  left: -15%;
  position: absolute;
  right: -15%;
  top: 42%;
  transform: rotate(-2deg);
}

.ocean-live span:nth-child(2) {
  animation-duration: 16s;
  opacity: 0.65;
  top: 58%;
  transform: rotate(1deg);
}

.ocean-live span:nth-child(3) {
  animation-duration: 20s;
  opacity: 0.5;
  top: 74%;
  transform: rotate(-1deg);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.8), rgba(15, 14, 11, 0.38) 45%, rgba(15, 14, 11, 0.08)),
    linear-gradient(0deg, rgba(15, 14, 11, 0.32), rgba(15, 14, 11, 0.1));
  inset: 0;
  position: absolute;
  z-index: 2;
}

.hero-content {
  align-self: center;
  max-width: 760px;
  padding: 132px clamp(20px, 5vw, 72px) 170px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper);
}

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

h1,
h2 {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4rem, 9vw, 8.2rem);
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.24rem);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-width: 172px;
  padding: 13px 20px;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 250, 241, 0.95);
  bottom: 0;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  width: min(78vw, 980px);
  z-index: 4;
}

@keyframes ocean-glow {
  from {
    transform: translateX(-8%) scale(1);
  }

  to {
    transform: translateX(8%) scale(1.08);
  }
}

@keyframes wave-drift {
  from {
    background-position: 0 0;
    transform: translateX(-8%) rotate(-2deg);
  }

  to {
    background-position: 900px 0;
    transform: translateX(8%) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ocean-live,
  .ocean-live::before,
  .ocean-live::after,
  .ocean-live span {
    animation: none;
  }

  .ocean-live canvas {
    display: none;
  }
}

.hero-panel div {
  border-right: 1px solid var(--line);
  padding: 24px;
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span,
.collection-grid span,
.service-card span,
.process-list span {
  color: var(--copper);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--paper);
}

.intro {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.75fr);
}

.intro p:last-child,
.founder-copy p,
.image-feature p,
.advisory-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.proof-strip {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.proof-strip div {
  background: rgba(255, 255, 255, 0.06);
  min-height: 180px;
  padding: 30px;
}

.proof-strip strong {
  display: block;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-weight: 700;
  line-height: 1.4;
}

.founder {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(230px, 0.55fr) minmax(320px, 1fr);
}

.founder-portrait {
  aspect-ratio: 0.82;
  background: var(--ink);
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 420px;
  overflow: hidden;
}

.founder-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.founder-copy {
  align-self: center;
  max-width: 860px;
}

.founder-copy h2 {
  margin-bottom: 24px;
}

.founder-copy p {
  margin-bottom: 18px;
}

.founder-copy p:last-of-type {
  margin-bottom: 30px;
}

.linkedin-link {
  background: var(--sea);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 13px 20px;
}

.brand-signature {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.46fr);
}

.brand-signature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.brand-signature h2 {
  margin-bottom: 22px;
}

.brand-signature img {
  background: #071623;
  box-shadow: var(--shadow);
  max-width: 360px;
  padding: 18px;
  width: 100%;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 860px;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 1.25;
  background-position: center;
  background-size: cover;
}

.card-media.villa {
  background-image:
    linear-gradient(rgba(36, 76, 91, 0.08), rgba(36, 76, 91, 0.12)),
    url("assets/hero-villa.png");
}

.card-media.concierge {
  background-image:
    linear-gradient(rgba(65, 84, 71, 0.06), rgba(65, 84, 71, 0.12)),
    url("assets/luxury-interior.png");
}

.card-media.owners {
  background-image:
    linear-gradient(rgba(34, 32, 28, 0.04), rgba(36, 76, 91, 0.12)),
    url("assets/india-luxury-villa.png");
}

.card-body {
  padding: 26px;
}

.card-body p,
.advisory-list p,
.process-list p,
.collection-grid strong {
  color: var(--muted);
  margin-bottom: 0;
}

.advisory {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(260px, 0.56fr) minmax(300px, 0.9fr);
}

.advisory-image {
  align-self: stretch;
  margin: 0;
  min-height: 420px;
}

.advisory-image img,
.image-feature img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.advisory-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.advisory-list div {
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.advisory-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.collection {
  background: var(--charcoal);
  color: #fff;
}

.collection .eyebrow {
  color: #d2a079;
}

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

.collection-grid article {
  background: rgba(255, 255, 255, 0.06);
  min-height: 260px;
  padding: 28px;
}

.collection-grid strong {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 1.05rem;
  line-height: 1.45;
}

.image-feature {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.86fr);
}

.image-feature img {
  aspect-ratio: 1.2;
}

.image-feature h2 {
  margin-bottom: 22px;
}

.process-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.contact {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 0.82fr);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a {
  color: var(--sea);
  font-weight: 700;
}

address {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  max-width: 360px;
}

.enquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 8px;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid rgba(21, 20, 17, 0.18);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

textarea {
  resize: vertical;
}

button {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 52px;
  padding: 13px 20px;
}

.form-note {
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  min-height: 1.4em;
}

footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

footer strong {
  color: #fff;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .hero-panel,
  .intro,
  .proof-strip,
  .founder,
  .brand-signature,
  .advisory,
  .image-feature,
  .contact,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .hero-panel div,
  .advisory-list div,
  .advisory-list div:nth-child(odd) {
    border-right: 0;
  }

  .advisory-list,
  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advisory-image {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand-logo {
    height: 38px;
    width: 38px;
  }

  .header-action {
    padding: 9px 12px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-content {
    padding: 112px 18px 360px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-panel,
  .advisory-list,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
